<?xml version="1.0" encoding="UTF-8"?>
<rss  xmlns:atom="http://www.w3.org/2005/Atom" 
      xmlns:media="http://search.yahoo.com/mrss/" 
      xmlns:content="http://purl.org/rss/1.0/modules/content/" 
      xmlns:dc="http://purl.org/dc/elements/1.1/" 
      version="2.0">
<channel>
<title>Matt Triano</title>
<link>https://www.matttriano.dev/</link>
<atom:link href="https://www.matttriano.dev/index.xml" rel="self" type="application/rss+xml"/>
<description>Notes and how-tos on data engineering, analysis, python, networking, experiments with hot new things, and more</description>
<generator>quarto-1.9.36</generator>
<lastBuildDate>Sat, 04 Apr 2026 00:00:00 GMT</lastBuildDate>
<item>
  <title>Every bike routing tool optimizes for speed. I built one that optimizes for not getting hit by a car.</title>
  <dc:creator>Matt Triano</dc:creator>
  <link>https://www.matttriano.dev/posts/021_bike_map/bike_map_routing_tool.html</link>
  <description><![CDATA[ 





<div id="f8acf593-6deb-43d8-b273-ce8fe81efb35" class="cell" data-execution_count="1">
<details class="code-fold">
<summary>imports and setup</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb1-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> sys</span>
<span id="cb1-2"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> pathlib <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> Path</span>
<span id="cb1-3"></span>
<span id="cb1-4">module_dir <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> Path(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"."</span>).resolve()</span>
<span id="cb1-5">sys.path.append(<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span>(module_dir))</span>
<span id="cb1-6"></span>
<span id="cb1-7"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> osmnx <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> ox</span>
<span id="cb1-8"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> network_explorer <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> BikeNetworkExplorer</span></code></pre></div></div>
</details>
</div>
<section id="motivation" class="level1">
<h1>Motivation</h1>
<p>On a trip to Copenhagen, I biked in a city for the first time in a decade. It was delightful and liberating, and it made sense that the majority of Copenhagen residents primarily commuted by bike. Returning home to Chicago, I bought a bike and quickly felt the difference that bike infrastructure and culture makes.</p>
<p>In Copenhagen, bike safety and bike theft were basically solved problems. Extensive infrastructure made routes everywhere safe to bike and from the number of unlocked bikes, it was clear that bike theft wasn’t an issue. Back in Chicago, I was sharing lanes with cars going 40 mph and despite extensive locking and uglying up my bike, I still never knew if my bike would still be there. The gap between those two experiences stuck with me. Over time I’ve learned safer, more comfortable routes, and Chicago keeps building out new infrastructure, but you wouldn’t know about these better ways from the existing popular routing tools (see the images below). So I built a tool to help find the safer routes and find secure parking areas, the missing last mile issues that keep people from biking.</p>
<p>You can try it at <a href="https://bike-map.dev.missinglastmile.net/">bike-map.dev.missinglastmile.net</a>.</p>
<div style="display: flex; gap: 1rem; justify-content: center;">
<figure style="text-align: center; margin: 0; width: 45%;" class="figure">
<img src="https://www.matttriano.dev/posts/021_bike_map/imgs/bike_map__palmer_park_to_wrigley.png" style="width: 100%;" class="figure-img">
<figcaption>
Bike-Maps safety-optimized route using the Lakefront Trail
</figcaption>
</figure>
<figure style="text-align: center; margin: 0; width: 45%;" class="figure">
<img src="https://www.matttriano.dev/posts/021_bike_map/imgs/google_maps__palmer_park_to_wrigley.png" style="width: 100%;" class="figure-img">
<figcaption>
Google Maps route for the same start and end point
</figcaption>
</figure>
</div>
<section id="how-routing-algorithms-work" class="level2">
<h2 class="anchored" data-anchor-id="how-routing-algorithms-work">How routing algorithms work</h2>
<p>You already have an intuition for how routing works.</p>
<p>Think about a route you ride or drive regularly. At each intersection, you know which way to go. You haven’t evaluated every possible path through the city, but you can tell which options move you toward your destination and which ones don’t. You don’t consider turning away from where you’re going unless you have a good reason, like avoiding a busy street or getting over a bridge.</p>
<p>In computer science jargon, a street grid is called a <strong>graph</strong> (or <strong>network</strong>); a set of intersections connected by roads. Each intersection is a <strong>node</strong>, each road segment between intersections is an <strong>edge</strong>, and each edge has a <strong>cost</strong> — whatever you’d “pay” by traveling down that segment. Cost could be distance, time, effort, risk, unpleasantness; it could be anything, you just have to be able to represent it with positive numbers.</p>
<p>The routing algorithm I use, <strong>A</strong>* (pronounced “A star”), works the same way. It starts at the starting intersection, looks at the road segments it could go down, and for each one asks: how much did it cost to get here, how much does it cost to go down this road segment, and how far would I be from the destination? It picks the option where that total is lowest and repeats the process. This means it naturally favors direct routes, but it’s willing to explore less direct paths if the cost of the direct route is high enough, which is exactly what you want when “cost” means danger instead of distance.</p>
<p>Here’s what a few blocks of Chicago’s actual bike network look like as a graph:</p>
<div id="ed3291b8-d4ff-4b90-bc2a-2e6d171af374" class="cell" data-execution_count="2">
<details open="" class="code-fold">
<summary>Examining the raw bike network</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb2-1">west <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span><span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">87.6620</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">;</span> south <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">41.8968</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">;</span> east <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span><span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">87.6423</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">;</span> north <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">41.9113</span></span>
<span id="cb2-2">goose_island_graph <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ox.graph_from_bbox(</span>
<span id="cb2-3">    bbox<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>(west, south, east, north), network_type<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"bike"</span>, retain_all<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">True</span></span>
<span id="cb2-4">)</span>
<span id="cb2-5">goose_island_explorer <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> BikeNetworkExplorer(goose_island_graph)</span>
<span id="cb2-6">goose_island_explorer.show()</span></code></pre></div></div>
</details>
<div class="cell-output cell-output-display" data-execution_count="2">
<div style="width:100%;"><div style="position:relative;width:100%;height:0;padding-bottom:60%;"><span style="color:#565656">Make this Notebook Trusted to load map: File -&gt; Trust Notebook</span><iframe srcdoc="<!DOCTYPE html>
<html>
<head>
    
    <meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; />
    <script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;></script>
    <script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;></script>
    <script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;></script>
    <script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;></script>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/>
    <link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/>
    
            <meta name=&quot;viewport&quot; content=&quot;width=device-width,
                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; />
            <style>
                #map_176ecb8162cf7770cbea955babcd9213 {
                    position: relative;
                    width: 100.0%;
                    height: 100.0%;
                    left: 0.0%;
                    top: 0.0%;
                }
                .leaflet-container { font-size: 1rem; }
            </style>

            <style>html, body {
                width: 100%;
                height: 100%;
                margin: 0;
                padding: 0;
            }
            </style>

            <style>#map {
                position:absolute;
                top:0;
                bottom:0;
                right:0;
                left:0;
                }
            </style>

            <script>
                L_NO_TOUCH = false;
                L_DISABLE_3D = false;
            </script>

        
</head>
<body>
    
    
        <div style=&quot;
            position:fixed;
            bottom:20px;
            left:20px;
            z-index:1000;
            background:white;
            padding:10px 14px;
            border-radius:6px;
            border:1px solid #ccc;
            font-family:monospace;
            font-size:11px;
            max-height:300px;
            overflow-y:auto;
            box-shadow:0 2px 6px rgba(0,0,0,0.15);
        &quot;>
            <div style=&quot;font-weight:700;margin-bottom:6px;&quot;>Components</div>
            <div style=&quot;margin:3px 0;&quot;><span style=&quot;display:inline-block;width:14px;height:14px;background:#e6194b;border-radius:2px;vertical-align:middle;margin-right:6px;&quot;></span><span style=&quot;vertical-align:middle;&quot;>Comp 0: 833n / 2040e</span></div><div style=&quot;margin:3px 0;&quot;><span style=&quot;display:inline-block;width:14px;height:14px;background:#3cb44b;border-radius:2px;vertical-align:middle;margin-right:6px;&quot;></span><span style=&quot;vertical-align:middle;&quot;>Comp 1: 8n / 15e</span></div><div style=&quot;margin:3px 0;&quot;><span style=&quot;display:inline-block;width:14px;height:14px;background:#4363d8;border-radius:2px;vertical-align:middle;margin-right:6px;&quot;></span><span style=&quot;vertical-align:middle;&quot;>Comp 2: 6n / 14e</span></div><div style=&quot;margin:3px 0;&quot;><span style=&quot;display:inline-block;width:14px;height:14px;background:#f58231;border-radius:2px;vertical-align:middle;margin-right:6px;&quot;></span><span style=&quot;vertical-align:middle;&quot;>Comp 3: 4n / 3e</span></div><div style=&quot;margin:3px 0;&quot;><span style=&quot;display:inline-block;width:14px;height:14px;background:#911eb4;border-radius:2px;vertical-align:middle;margin-right:6px;&quot;></span><span style=&quot;vertical-align:middle;&quot;>Comp 4: 3n / 4e</span></div><div style=&quot;margin:3px 0;&quot;><span style=&quot;display:inline-block;width:14px;height:14px;background:#42d4f4;border-radius:2px;vertical-align:middle;margin-right:6px;&quot;></span><span style=&quot;vertical-align:middle;&quot;>Comp 5: 3n / 4e</span></div><div style=&quot;margin:3px 0;&quot;><span style=&quot;display:inline-block;width:14px;height:14px;background:#f032e6;border-radius:2px;vertical-align:middle;margin-right:6px;&quot;></span><span style=&quot;vertical-align:middle;&quot;>Comp 6: 3n / 6e</span></div><div style=&quot;margin:3px 0;&quot;><span style=&quot;display:inline-block;width:14px;height:14px;background:#bfef45;border-radius:2px;vertical-align:middle;margin-right:6px;&quot;></span><span style=&quot;vertical-align:middle;&quot;>Comp 7: 2n / 2e</span></div><div style=&quot;margin:3px 0;&quot;><span style=&quot;display:inline-block;width:14px;height:14px;background:#fabed4;border-radius:2px;vertical-align:middle;margin-right:6px;&quot;></span><span style=&quot;vertical-align:middle;&quot;>Comp 8: 2n / 2e</span></div><div style=&quot;margin:3px 0;&quot;><span style=&quot;display:inline-block;width:14px;height:14px;background:#469990;border-radius:2px;vertical-align:middle;margin-right:6px;&quot;></span><span style=&quot;vertical-align:middle;&quot;>Comp 9: 2n / 2e</span></div><div style=&quot;margin:3px 0;&quot;><span style=&quot;display:inline-block;width:14px;height:14px;background:#dcbeff;border-radius:2px;vertical-align:middle;margin-right:6px;&quot;></span><span style=&quot;vertical-align:middle;&quot;>Comp 10: 2n / 2e</span></div><div style=&quot;margin:3px 0;&quot;><span style=&quot;display:inline-block;width:14px;height:14px;background:#9A6324;border-radius:2px;vertical-align:middle;margin-right:6px;&quot;></span><span style=&quot;vertical-align:middle;&quot;>Comp 11: 1n / 0e</span></div><div style=&quot;margin:3px 0;&quot;><span style=&quot;display:inline-block;width:14px;height:14px;background:#fffac8;border-radius:2px;vertical-align:middle;margin-right:6px;&quot;></span><span style=&quot;vertical-align:middle;&quot;>Comp 12: 1n / 0e</span></div><div style=&quot;margin:3px 0;&quot;><span style=&quot;display:inline-block;width:14px;height:14px;background:#800000;border-radius:2px;vertical-align:middle;margin-right:6px;&quot;></span><span style=&quot;vertical-align:middle;&quot;>Comp 13: 1n / 0e</span></div><div style=&quot;margin:3px 0;&quot;><span style=&quot;display:inline-block;width:14px;height:14px;background:#aaffc3;border-radius:2px;vertical-align:middle;margin-right:6px;&quot;></span><span style=&quot;vertical-align:middle;&quot;>Comp 14: 1n / 0e</span></div><div style=&quot;margin:3px 0;&quot;><span style=&quot;display:inline-block;width:14px;height:14px;background:#808000;border-radius:2px;vertical-align:middle;margin-right:6px;&quot;></span><span style=&quot;vertical-align:middle;&quot;>Comp 15: 1n / 0e</span></div><div style=&quot;margin:3px 0;&quot;><span style=&quot;display:inline-block;width:14px;height:14px;background:#ffd8b1;border-radius:2px;vertical-align:middle;margin-right:6px;&quot;></span><span style=&quot;vertical-align:middle;&quot;>Comp 16: 1n / 0e</span></div>
        </div>
        
    
            <div class=&quot;folium-map&quot; id=&quot;map_176ecb8162cf7770cbea955babcd9213&quot; ></div>
        
</body>
<script>
    
    
            var map_176ecb8162cf7770cbea955babcd9213 = L.map(
                &quot;map_176ecb8162cf7770cbea955babcd9213&quot;,
                {
                    center: [41.90404995, -87.65610729999999],
                    crs: L.CRS.EPSG3857,
                    ...{
  &quot;zoom&quot;: 15,
  &quot;zoomControl&quot;: true,
  &quot;preferCanvas&quot;: false,
}

                }
            );

            

        
    
            var tile_layer_3e44899b39c84f7c054b500784db30ae = L.tileLayer(
                &quot;https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}{r}.png&quot;,
                {
  &quot;minZoom&quot;: 0,
  &quot;maxZoom&quot;: 20,
  &quot;maxNativeZoom&quot;: 20,
  &quot;noWrap&quot;: false,
  &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;,
  &quot;subdomains&quot;: &quot;abcd&quot;,
  &quot;detectRetina&quot;: false,
  &quot;tms&quot;: false,
  &quot;opacity&quot;: 1,
}

            );
        
    
            tile_layer_3e44899b39c84f7c054b500784db30ae.addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
            var poly_line_34550e10924482c21e1b71668a104cc1 = L.polyline(
                [[41.9109266, -87.6482861], [41.9108427, -87.6482827], [41.9107828, -87.6482805], [41.9106171, -87.6482745], [41.9105792, -87.6482737], [41.9103984, -87.6482685], [41.9103432, -87.6482662], [41.9101236, -87.6482586], [41.9100134, -87.648257]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_df0a24ccbca70f5ee8326baf35f656bb = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9e42e1f5f862fb7f4fed93929205d9a8 = $(`<div id=&quot;html_9e42e1f5f862fb7f4fed93929205d9a8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 35313351 → 102708202 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/288594593&quot; target=&quot;_blank&quot;>288594593</a>, <a href=&quot;https://www.openstreetmap.org/way/435397267&quot; target=&quot;_blank&quot;>435397267</a>, <a href=&quot;https://www.openstreetmap.org/way/435397271&quot; target=&quot;_blank&quot;>435397271</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>5</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>101.57365497171035</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Halsted Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_df0a24ccbca70f5ee8326baf35f656bb.setContent(html_9e42e1f5f862fb7f4fed93929205d9a8);
            
        

        poly_line_34550e10924482c21e1b71668a104cc1.bindPopup(popup_df0a24ccbca70f5ee8326baf35f656bb)
        ;

        
    
    
            var poly_line_3e7c2dad37854bc5c7be1eb22e6414cf = L.polyline(
                [[41.9109266, -87.6482861], [41.9109283, -87.6481671], [41.9109337, -87.6477772], [41.9109367, -87.6475567]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d554902ea559fd28bf9f97b9a9ff429f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_180a02af60b3636e9600a8c8385a42bc = $(`<div id=&quot;html_180a02af60b3636e9600a8c8385a42bc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 35313351 → 12195807202 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1281217245&quot; target=&quot;_blank&quot;>1281217245</a>, <a href=&quot;https://www.openstreetmap.org/way/1491049982&quot; target=&quot;_blank&quot;>1491049982</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>primary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>60.36801932601336</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West North Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>ref</td><td style='padding:2px 6px;'>IL 64</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_d554902ea559fd28bf9f97b9a9ff429f.setContent(html_180a02af60b3636e9600a8c8385a42bc);
            
        

        poly_line_3e7c2dad37854bc5c7be1eb22e6414cf.bindPopup(popup_d554902ea559fd28bf9f97b9a9ff429f)
        ;

        
    
    
            var poly_line_994ae604034d4edeb3820664e6ddc392 = L.polyline(
                [[41.9109266, -87.6482861], [41.9109244, -87.6483968], [41.9109197, -87.6486274], [41.9109185, -87.6486852], [41.9109168, -87.6487685], [41.9109152, -87.6488469]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1e04ba5d9cbbdd59e6cd1a505ca96b4d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_aa615cfb98afacf50950675a35d09d7f = $(`<div id=&quot;html_aa615cfb98afacf50950675a35d09d7f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 35313351 → 11891975100 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1281243497&quot; target=&quot;_blank&quot;>1281243497</a>, <a href=&quot;https://www.openstreetmap.org/way/1324992983&quot; target=&quot;_blank&quot;>1324992983</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>primary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>['5', '4']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>46.42330444685304</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West North Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>ref</td><td style='padding:2px 6px;'>IL 64</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_1e04ba5d9cbbdd59e6cd1a505ca96b4d.setContent(html_aa615cfb98afacf50950675a35d09d7f);
            
        

        poly_line_994ae604034d4edeb3820664e6ddc392.bindPopup(popup_1e04ba5d9cbbdd59e6cd1a505ca96b4d)
        ;

        
    
    
            var poly_line_e5b43a53d7feb21fe2412b5f1294a4bb = L.polyline(
                [[41.8998422, -87.6609825], [41.8998237, -87.6611543], [41.8998165, -87.6614826]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_161ba67c487cbfe9279e73852a7e1de5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_690b07e53ab60a839aa57bed7fdb95e3 = $(`<div id=&quot;html_690b07e53ab60a839aa57bed7fdb95e3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 43503249 → 5492667238 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24112110&quot; target=&quot;_blank&quot;>24112110</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>3</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>41.55011003315853</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>maxspeed</td><td style='padding:2px 6px;'>20 mph</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Augusta Boulevard</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_161ba67c487cbfe9279e73852a7e1de5.setContent(html_690b07e53ab60a839aa57bed7fdb95e3);
            
        

        poly_line_e5b43a53d7feb21fe2412b5f1294a4bb.bindPopup(popup_161ba67c487cbfe9279e73852a7e1de5)
        ;

        
    
    
            var poly_line_1916d01e3a79f7e85caaed9af62b7880 = L.polyline(
                [[41.8998422, -87.6609825], [41.8997618, -87.6609226], [41.8997115, -87.6608435], [41.8996405, -87.6607371]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_dec3faa4e39b7f97f51642526f672ce1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e3a2819b70b928f5ed3f2c9e918d2fd4 = $(`<div id=&quot;html_e3a2819b70b928f5ed3f2c9e918d2fd4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 43503249 → 10282879324 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/33262514&quot; target=&quot;_blank&quot;>33262514</a>, <a href=&quot;https://www.openstreetmap.org/way/1218295235&quot; target=&quot;_blank&quot;>1218295235</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>['1', '2']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>30.66012213344358</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Milwaukee Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_dec3faa4e39b7f97f51642526f672ce1.setContent(html_e3a2819b70b928f5ed3f2c9e918d2fd4);
            
        

        poly_line_1916d01e3a79f7e85caaed9af62b7880.bindPopup(popup_dec3faa4e39b7f97f51642526f672ce1)
        ;

        
    
    
            var poly_line_19a0de741c20356cc518828ddb331bcc = L.polyline(
                [[41.8998422, -87.6609825], [41.8999045, -87.6610902], [41.8999299, -87.6611309], [41.9001054, -87.6614047]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b1bf6854d28677097967693ea95006e8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2c14bd05c45a70e7c2d6d7e7f1efc8d2 = $(`<div id=&quot;html_2c14bd05c45a70e7c2d6d7e7f1efc8d2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 43503249 → 365024877 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435543550&quot; target=&quot;_blank&quot;>435543550</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>45.59035371583748</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Milwaukee Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_b1bf6854d28677097967693ea95006e8.setContent(html_2c14bd05c45a70e7c2d6d7e7f1efc8d2);
            
        

        poly_line_19a0de741c20356cc518828ddb331bcc.bindPopup(popup_b1bf6854d28677097967693ea95006e8)
        ;

        
    
    
            var poly_line_7559dbd08814e89c9802d73b944a8e9f = L.polyline(
                [[41.9064567, -87.6432955], [41.9065322, -87.6432976]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c052458e29082ad3f7924237eee6e72a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2d9dce480327317f9566110557b12a8c = $(`<div id=&quot;html_2d9dce480327317f9566110557b12a8c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 102708201 → 12049414900 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/244501328&quot; target=&quot;_blank&quot;>244501328</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>8.397027368481837</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_c052458e29082ad3f7924237eee6e72a.setContent(html_2d9dce480327317f9566110557b12a8c);
            
        

        poly_line_7559dbd08814e89c9802d73b944a8e9f.bindPopup(popup_c052458e29082ad3f7924237eee6e72a)
        ;

        
    
    
            var poly_line_82a9cefb77ee574f111721182b5a2654 = L.polyline(
                [[41.9064567, -87.6432955], [41.9065245, -87.6433918], [41.9067132, -87.6436601], [41.9069226, -87.6439578]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8ad0486aa6cf106d912ba0d3adbe66e6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9138f7688136cf29dccd05b1da38c475 = $(`<div id=&quot;html_9138f7688136cf29dccd05b1da38c475&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 102708201 → 12049414909 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435397256&quot; target=&quot;_blank&quot;>435397256</a>, <a href=&quot;https://www.openstreetmap.org/way/1300921643&quot; target=&quot;_blank&quot;>1300921643</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>3</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>75.4177359590049</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Clybourn Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_8ad0486aa6cf106d912ba0d3adbe66e6.setContent(html_9138f7688136cf29dccd05b1da38c475);
            
        

        poly_line_82a9cefb77ee574f111721182b5a2654.bindPopup(popup_8ad0486aa6cf106d912ba0d3adbe66e6)
        ;

        
    
    
            var poly_line_dcdffdd6b41d82d2c1343d5dc08bf919 = L.polyline(
                [[41.9064567, -87.6432955], [41.9063158, -87.6432919], [41.9050612, -87.6432596]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d66a34c756cee83b844aa8bd66324d00 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_106602b8d3cd774fb3f29e249d982394 = $(`<div id=&quot;html_106602b8d3cd774fb3f29e249d982394&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 102708201 → 261184870 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/519888263&quot; target=&quot;_blank&quot;>519888263</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>155.20117794346328</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_d66a34c756cee83b844aa8bd66324d00.setContent(html_106602b8d3cd774fb3f29e249d982394);
            
        

        poly_line_dcdffdd6b41d82d2c1343d5dc08bf919.bindPopup(popup_d66a34c756cee83b844aa8bd66324d00)
        ;

        
    
    
            var poly_line_88aa2e71fb64ba451fe501792f96f5a4 = L.polyline(
                [[41.9100134, -87.648257], [41.9098701, -87.6482517]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_51921493b1a2e443f31409a828fe6cba = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3f4f9143e5c9e382c6326dddefb6a5b9 = $(`<div id=&quot;html_3f4f9143e5c9e382c6326dddefb6a5b9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 102708202 → 265642209 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435397270&quot; target=&quot;_blank&quot;>435397270</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>15.94029016259574</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Halsted Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_51921493b1a2e443f31409a828fe6cba.setContent(html_3f4f9143e5c9e382c6326dddefb6a5b9);
            
        

        poly_line_88aa2e71fb64ba451fe501792f96f5a4.bindPopup(popup_51921493b1a2e443f31409a828fe6cba)
        ;

        
    
    
            var poly_line_be45ce887c507db9f6243813f3f5d138 = L.polyline(
                [[41.9100134, -87.648257], [41.9101236, -87.6482586], [41.9103432, -87.6482662], [41.9103984, -87.6482685], [41.9105792, -87.6482737], [41.9106171, -87.6482745], [41.9107828, -87.6482805], [41.9108427, -87.6482827], [41.9109266, -87.6482861]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3d7a944f88c867239ee30df8a9061726 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_41927bd305dcfd2b5baf4cdd26ea912b = $(`<div id=&quot;html_41927bd305dcfd2b5baf4cdd26ea912b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 102708202 → 35313351 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/288594593&quot; target=&quot;_blank&quot;>288594593</a>, <a href=&quot;https://www.openstreetmap.org/way/435397267&quot; target=&quot;_blank&quot;>435397267</a>, <a href=&quot;https://www.openstreetmap.org/way/435397271&quot; target=&quot;_blank&quot;>435397271</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>5</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>101.57365497171035</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Halsted Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_3d7a944f88c867239ee30df8a9061726.setContent(html_41927bd305dcfd2b5baf4cdd26ea912b);
            
        

        poly_line_be45ce887c507db9f6243813f3f5d138.bindPopup(popup_3d7a944f88c867239ee30df8a9061726)
        ;

        
    
    
            var poly_line_c03b6664bab34e9c2ae329d4a2b39be3 = L.polyline(
                [[41.9100134, -87.648257], [41.9100925, -87.6483714], [41.9102276, -87.6485579]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5019dbceda8485978ec878a06efc0869 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_33421ee0496ab91260b4888444a22611 = $(`<div id=&quot;html_33421ee0496ab91260b4888444a22611&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 102708202 → 2903243954 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435393422&quot; target=&quot;_blank&quot;>435393422</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>34.45926394769325</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Clybourn Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_5019dbceda8485978ec878a06efc0869.setContent(html_33421ee0496ab91260b4888444a22611);
            
        

        poly_line_c03b6664bab34e9c2ae329d4a2b39be3.bindPopup(popup_5019dbceda8485978ec878a06efc0869)
        ;

        
    
    
            var poly_line_5e0d49f57484345d48a4ecd602e0e5b7 = L.polyline(
                [[41.9100134, -87.648257], [41.9099323, -87.6481419], [41.9096657, -87.6477929]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fd87f922389250e49701c812a0884eeb = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fd39972b5c95d4232b7bf43b96119a35 = $(`<div id=&quot;html_fd39972b5c95d4232b7bf43b96119a35&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 102708202 → 263985031 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/488116313&quot; target=&quot;_blank&quot;>488116313</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>5</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>54.5032229754977</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Clybourn Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_fd87f922389250e49701c812a0884eeb.setContent(html_fd39972b5c95d4232b7bf43b96119a35);
            
        

        poly_line_5e0d49f57484345d48a4ecd602e0e5b7.bindPopup(popup_fd87f922389250e49701c812a0884eeb)
        ;

        
    
    
            var poly_line_e9385ef5a63478ab5c9897f49c30dd20 = L.polyline(
                [[41.9035777, -87.6525516], [41.9036617, -87.6526251], [41.9040655, -87.6529654]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6243687074c82aa28719a944e654e8e8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a734d3b5deda89b7b4e50f37d5e9cdb5 = $(`<div id=&quot;html_a734d3b5deda89b7b4e50f37d5e9cdb5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 102713545 → 5493313715 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24088116&quot; target=&quot;_blank&quot;>24088116</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>64.1483830605213</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Hickory Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_6243687074c82aa28719a944e654e8e8.setContent(html_a734d3b5deda89b7b4e50f37d5e9cdb5);
            
        

        poly_line_e9385ef5a63478ab5c9897f49c30dd20.bindPopup(popup_6243687074c82aa28719a944e654e8e8)
        ;

        
    
    
            var poly_line_835f7a28cc6be2ab1feb00cbecdf048f = L.polyline(
                [[41.9035777, -87.6525516], [41.903576, -87.6526706], [41.9035727, -87.6528914]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_418aa00c58ca1a006cfd037f339b9235 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_77d5734878f35b7e71514f8c3b349160 = $(`<div id=&quot;html_77d5734878f35b7e71514f8c3b349160&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 102713545 → 12183173799 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24372007&quot; target=&quot;_blank&quot;>24372007</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>28.127057348886712</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_418aa00c58ca1a006cfd037f339b9235.setContent(html_77d5734878f35b7e71514f8c3b349160);
            
        

        poly_line_835f7a28cc6be2ab1feb00cbecdf048f.bindPopup(popup_418aa00c58ca1a006cfd037f339b9235)
        ;

        
    
    
            var poly_line_7a0dd0ef91c5ce92367a83c801724d07 = L.polyline(
                [[41.9035777, -87.6525516], [41.9035797, -87.6524224], [41.9035818, -87.6522812]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ceb3492af881fe6c52c39fea4b82095e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_06ff5acbd1d8c5080ade83a2257d80c0 = $(`<div id=&quot;html_06ff5acbd1d8c5080ade83a2257d80c0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 102713545 → 5493314572 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24372007&quot; target=&quot;_blank&quot;>24372007</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.3827180875693</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_ceb3492af881fe6c52c39fea4b82095e.setContent(html_06ff5acbd1d8c5080ade83a2257d80c0);
            
        

        poly_line_7a0dd0ef91c5ce92367a83c801724d07.bindPopup(popup_ceb3492af881fe6c52c39fea4b82095e)
        ;

        
    
    
            var poly_line_e195620a3c1e3f664084b495913ae3fd = L.polyline(
                [[41.9035777, -87.6525516], [41.9034927, -87.6524834], [41.9034194, -87.6524248], [41.903018, -87.6520964], [41.9020243, -87.6512834]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_07b9e37c61e6f67f81844e085fd1c6e3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4e2395dd54a041c10ff9c383019c0e0a = $(`<div id=&quot;html_4e2395dd54a041c10ff9c383019c0e0a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 102713545 → 6372221643 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1125567629&quot; target=&quot;_blank&quot;>1125567629</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>202.11874509429353</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Hickory Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_07b9e37c61e6f67f81844e085fd1c6e3.setContent(html_4e2395dd54a041c10ff9c383019c0e0a);
            
        

        poly_line_e195620a3c1e3f664084b495913ae3fd.bindPopup(popup_07b9e37c61e6f67f81844e085fd1c6e3)
        ;

        
    
    
            var poly_line_4f940b41dc1ed2324d83992746c9ca12 = L.polyline(
                [[41.9036431, -87.6480864], [41.9035477, -87.6480823], [41.903305, -87.6480714], [41.903266, -87.6480693]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d0be2812052fe6767b20c1c3aa8c9829 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_131149a369bc1257379c8297b2b907d3 = $(`<div id=&quot;html_131149a369bc1257379c8297b2b907d3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 102713547 → 9987432801 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435397261&quot; target=&quot;_blank&quot;>435397261</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>5</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>41.95564484187281</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Halsted Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_d0be2812052fe6767b20c1c3aa8c9829.setContent(html_131149a369bc1257379c8297b2b907d3);
            
        

        poly_line_4f940b41dc1ed2324d83992746c9ca12.bindPopup(popup_d0be2812052fe6767b20c1c3aa8c9829)
        ;

        
    
    
            var poly_line_6eaa3552d7e0cf80103d29a7df4f41d6 = L.polyline(
                [[41.9036431, -87.6480864], [41.9037328, -87.6480898], [41.903766, -87.6480938], [41.9039367, -87.6480976], [41.9039517, -87.648098], [41.9043368, -87.6481073]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4a2f944fd4cae3c2df4ee7ed1ab621b7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_46579937130ce9514fbc10cac16a5f8a = $(`<div id=&quot;html_46579937130ce9514fbc10cac16a5f8a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 102713547 → 7079238792 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435397266&quot; target=&quot;_blank&quot;>435397266</a>, <a href=&quot;https://www.openstreetmap.org/way/253740820&quot; target=&quot;_blank&quot;>253740820</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>['3', '2']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>77.16465989010216</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Halsted Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_4a2f944fd4cae3c2df4ee7ed1ab621b7.setContent(html_46579937130ce9514fbc10cac16a5f8a);
            
        

        poly_line_6eaa3552d7e0cf80103d29a7df4f41d6.bindPopup(popup_4a2f944fd4cae3c2df4ee7ed1ab621b7)
        ;

        
    
    
            var poly_line_7d359962bc99ba1638ed2f6355a71811 = L.polyline(
                [[41.9036431, -87.6480864], [41.9036452, -87.6479527], [41.9036459, -87.6478767], [41.9036468, -87.647767]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_79c4d4a539abe2e02c11b5f8a311d454 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b64e7de882a100a441136a507064c4ac = $(`<div id=&quot;html_b64e7de882a100a441136a507064c4ac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 102713547 → 353809557 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/621623498&quot; target=&quot;_blank&quot;>621623498</a>, <a href=&quot;https://www.openstreetmap.org/way/435397324&quot; target=&quot;_blank&quot;>435397324</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>5</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>26.436740615546938</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_79c4d4a539abe2e02c11b5f8a311d454.setContent(html_b64e7de882a100a441136a507064c4ac);
            
        

        poly_line_7d359962bc99ba1638ed2f6355a71811.bindPopup(popup_79c4d4a539abe2e02c11b5f8a311d454)
        ;

        
    
    
            var poly_line_ae3f4abaae1b2cef4951832d940df1fd = L.polyline(
                [[41.9036431, -87.6480864], [41.9036404, -87.6481999], [41.9036361, -87.6485109], [41.9036345, -87.6486236]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_141ee2fc50b4bc789556cd62f4a5eb30 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ab4bfceb105999f2660215b610f95e8a = $(`<div id=&quot;html_ab4bfceb105999f2660215b610f95e8a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 102713547 → 12182728200 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1376948656&quot; target=&quot;_blank&quot;>1376948656</a>, <a href=&quot;https://www.openstreetmap.org/way/372671691&quot; target=&quot;_blank&quot;>372671691</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>3</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>44.469106093267506</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_141ee2fc50b4bc789556cd62f4a5eb30.setContent(html_ab4bfceb105999f2660215b610f95e8a);
            
        

        poly_line_ae3f4abaae1b2cef4951832d940df1fd.bindPopup(popup_141ee2fc50b4bc789556cd62f4a5eb30)
        ;

        
    
    
            var poly_line_38114490b0db478ab26d6211c987568e = L.polyline(
                [[41.9036431, -87.6480864], [41.9037317, -87.648169], [41.9037598, -87.6482057], [41.9040353, -87.6484688], [41.9046899, -87.6489886], [41.9049539, -87.6491463], [41.9050327, -87.6491956]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4ce5c43fd0249e30fd11b8797f79abd5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ad908dfa16937d994a241588a69df20c = $(`<div id=&quot;html_ad908dfa16937d994a241588a69df20c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 102713547 → 469358424 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1447344341&quot; target=&quot;_blank&quot;>1447344341</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>180.27378085751528</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_4ce5c43fd0249e30fd11b8797f79abd5.setContent(html_ad908dfa16937d994a241588a69df20c);
            
        

        poly_line_38114490b0db478ab26d6211c987568e.bindPopup(popup_4ce5c43fd0249e30fd11b8797f79abd5)
        ;

        
    
    
            var poly_line_bb6233beb5a0607109e82620f52180ac = L.polyline(
                [[41.910848, -87.6531209], [41.9107623, -87.6531187], [41.9105089, -87.6531121]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9ecfc66e5084a972620516a6cd77400e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a278866b05377a2182b37c1e35060670 = $(`<div id=&quot;html_a278866b05377a2182b37c1e35060670&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 250756058 → 5493322756 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1281243508&quot; target=&quot;_blank&quot;>1281243508</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>37.71328416420127</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Sheffield Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_9ecfc66e5084a972620516a6cd77400e.setContent(html_a278866b05377a2182b37c1e35060670);
            
        

        poly_line_bb6233beb5a0607109e82620f52180ac.bindPopup(popup_9ecfc66e5084a972620516a6cd77400e)
        ;

        
    
    
            var poly_line_78242a81a7adc88ffc5a586653cb8f63 = L.polyline(
                [[41.910848, -87.6531209], [41.9108496, -87.6530145], [41.9108559, -87.6526062], [41.9108705, -87.6516591]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c3105cb47489551cdb47ac60615f84f1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_09af753e5a28779889384f4f40c7df95 = $(`<div id=&quot;html_09af753e5a28779889384f4f40c7df95&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 250756058 → 11891975125 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1281243513&quot; target=&quot;_blank&quot;>1281243513</a>, <a href=&quot;https://www.openstreetmap.org/way/1281243506&quot; target=&quot;_blank&quot;>1281243506</a>, <a href=&quot;https://www.openstreetmap.org/way/1363279583&quot; target=&quot;_blank&quot;>1363279583</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>primary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>['5', '4']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>120.98939596479879</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West North Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>ref</td><td style='padding:2px 6px;'>IL 64</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_c3105cb47489551cdb47ac60615f84f1.setContent(html_09af753e5a28779889384f4f40c7df95);
            
        

        poly_line_78242a81a7adc88ffc5a586653cb8f63.bindPopup(popup_c3105cb47489551cdb47ac60615f84f1)
        ;

        
    
    
            var poly_line_93db05598c5f0d2b69440878bb3b4b6d = L.polyline(
                [[41.910848, -87.6531209], [41.9108458, -87.6532192], [41.9108447, -87.6532701], [41.9108428, -87.6533536]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_69e78f32323c2bf786aa14593ffa3d31 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1c7c4d5e272630458824f273dd2b45cd = $(`<div id=&quot;html_1c7c4d5e272630458824f273dd2b45cd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 250756058 → 12195807198 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1281243515&quot; target=&quot;_blank&quot;>1281243515</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>primary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.2645438592988</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West North Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>ref</td><td style='padding:2px 6px;'>IL 64</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_69e78f32323c2bf786aa14593ffa3d31.setContent(html_1c7c4d5e272630458824f273dd2b45cd);
            
        

        poly_line_93db05598c5f0d2b69440878bb3b4b6d.bindPopup(popup_69e78f32323c2bf786aa14593ffa3d31)
        ;

        
    
    
            var poly_line_8b6b4d7d91fded000bc0104396fb8424 = L.polyline(
                [[41.910848, -87.6531209], [41.9109276, -87.6531235], [41.9112998, -87.6531359]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8df01301fc48604c897992ac85876ce3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c4825bd5732609ed073debc9fda5e292 = $(`<div id=&quot;html_c4825bd5732609ed073debc9fda5e292&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 250756058 → 2109658731 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1414844940&quot; target=&quot;_blank&quot;>1414844940</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>50.25327117737836</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Sheffield Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_8df01301fc48604c897992ac85876ce3.setContent(html_c4825bd5732609ed073debc9fda5e292);
            
        

        poly_line_8b6b4d7d91fded000bc0104396fb8424.bindPopup(popup_8df01301fc48604c897992ac85876ce3)
        ;

        
    
    
            var poly_line_6e5ff571128f637150269db58a6e8c75 = L.polyline(
                [[41.9007917, -87.6613704], [41.9011052, -87.6614354], [41.9012185, -87.6616355]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1448840bf807424f00fdbd5afdc72c76 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f5022581a7a5c2524cc7f6b0f9cf08ce = $(`<div id=&quot;html_f5022581a7a5c2524cc7f6b0f9cf08ce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261092281 → 261092282 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24067168&quot; target=&quot;_blank&quot;>24067168</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>56.08041940994143</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_1448840bf807424f00fdbd5afdc72c76.setContent(html_f5022581a7a5c2524cc7f6b0f9cf08ce);
            
        

        poly_line_6e5ff571128f637150269db58a6e8c75.bindPopup(popup_1448840bf807424f00fdbd5afdc72c76)
        ;

        
    
    
            var poly_line_c406f0af0d2bd4a13fbe3c1b81195d96 = L.polyline(
                [[41.9007917, -87.6613704], [41.900995, -87.6617115], [41.9011557, -87.6617199], [41.9012185, -87.6616355]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_cd179627d8567d39252ef1e40bbc5a6e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fbff77572936d007f884705f74edacc2 = $(`<div id=&quot;html_fbff77572936d007f884705f74edacc2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261092281 → 261092282 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24067169&quot; target=&quot;_blank&quot;>24067169</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>63.92558809167791</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_cd179627d8567d39252ef1e40bbc5a6e.setContent(html_fbff77572936d007f884705f74edacc2);
            
        

        poly_line_c406f0af0d2bd4a13fbe3c1b81195d96.bindPopup(popup_cd179627d8567d39252ef1e40bbc5a6e)
        ;

        
    
    
            var poly_line_5b3019991fc67d75daed2aacfa604b50 = L.polyline(
                [[41.9007917, -87.6613704], [41.9007162, -87.6613284], [41.9007251, -87.6612366], [41.9007312, -87.6611742]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_54c301a739f2ce10b78a0e9b117a9597 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6851e126a8ba877bbe0b0b703a0e6025 = $(`<div id=&quot;html_6851e126a8ba877bbe0b0b703a0e6025&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261092281 → 261092289 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24067169&quot; target=&quot;_blank&quot;>24067169</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.95696784312794</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_54c301a739f2ce10b78a0e9b117a9597.setContent(html_6851e126a8ba877bbe0b0b703a0e6025);
            
        

        poly_line_5b3019991fc67d75daed2aacfa604b50.bindPopup(popup_54c301a739f2ce10b78a0e9b117a9597)
        ;

        
    
    
            var poly_line_f24c03f8a6c7e1871e56e5a9674e6871 = L.polyline(
                [[41.9012185, -87.6616355], [41.9013025, -87.6615194], [41.9013502, -87.6614536]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_dcb8b2cea972ba6abe0f42be7a792c64 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f23b01d74962791420839022e0e99a85 = $(`<div id=&quot;html_f23b01d74962791420839022e0e99a85&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261092282 → 261092285 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24067168&quot; target=&quot;_blank&quot;>24067168</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.00224228586545</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_dcb8b2cea972ba6abe0f42be7a792c64.setContent(html_f23b01d74962791420839022e0e99a85);
            
        

        poly_line_f24c03f8a6c7e1871e56e5a9674e6871.bindPopup(popup_dcb8b2cea972ba6abe0f42be7a792c64)
        ;

        
    
    
            var poly_line_1109bc5f8d8a106a3b411cf293faaf5a = L.polyline(
                [[41.9012185, -87.6616355], [41.9011052, -87.6614354], [41.9007917, -87.6613704]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d94f03d053b05677512db3c5695a9df2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3ad51873d8d6c872f6dff11d71a841a5 = $(`<div id=&quot;html_3ad51873d8d6c872f6dff11d71a841a5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261092282 → 261092281 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24067168&quot; target=&quot;_blank&quot;>24067168</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>56.08041940994143</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_d94f03d053b05677512db3c5695a9df2.setContent(html_3ad51873d8d6c872f6dff11d71a841a5);
            
        

        poly_line_1109bc5f8d8a106a3b411cf293faaf5a.bindPopup(popup_d94f03d053b05677512db3c5695a9df2)
        ;

        
    
    
            var poly_line_c5149e7515ac3d7655c50d19c9cd8263 = L.polyline(
                [[41.9012185, -87.6616355], [41.9011557, -87.6617199], [41.900995, -87.6617115], [41.9007917, -87.6613704]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a2d41ba1fd81675dd9f47ab62594639c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_356ec4c76a347b499ca1d54fe2551f64 = $(`<div id=&quot;html_356ec4c76a347b499ca1d54fe2551f64&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261092282 → 261092281 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24067169&quot; target=&quot;_blank&quot;>24067169</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>63.92558809167791</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_a2d41ba1fd81675dd9f47ab62594639c.setContent(html_356ec4c76a347b499ca1d54fe2551f64);
            
        

        poly_line_c5149e7515ac3d7655c50d19c9cd8263.bindPopup(popup_a2d41ba1fd81675dd9f47ab62594639c)
        ;

        
    
    
            var poly_line_46c323708a59515487d0f36ebd696bcb = L.polyline(
                [[41.9013502, -87.6614536], [41.9014562, -87.6616063]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d4dfe72b2217996601f5430cf7ba0c2f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a65e6d3e76526190837555441ab99364 = $(`<div id=&quot;html_a65e6d3e76526190837555441ab99364&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261092285 → 12156678399 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/32468937&quot; target=&quot;_blank&quot;>32468937</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>17.28116257191386</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Cortez Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_d4dfe72b2217996601f5430cf7ba0c2f.setContent(html_a65e6d3e76526190837555441ab99364);
            
        

        poly_line_46c323708a59515487d0f36ebd696bcb.bindPopup(popup_d4dfe72b2217996601f5430cf7ba0c2f)
        ;

        
    
    
            var poly_line_f1759b98a73525d7fce9c03fb0a6c9a1 = L.polyline(
                [[41.9013502, -87.6614536], [41.9013025, -87.6615194], [41.9012185, -87.6616355]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0a49859ebe03484ef2d9ac9cd6c0f02d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6c52b4ada5c41061399c7d4bd09b3d77 = $(`<div id=&quot;html_6c52b4ada5c41061399c7d4bd09b3d77&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261092285 → 261092282 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24067168&quot; target=&quot;_blank&quot;>24067168</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.00224228586545</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_0a49859ebe03484ef2d9ac9cd6c0f02d.setContent(html_6c52b4ada5c41061399c7d4bd09b3d77);
            
        

        poly_line_f1759b98a73525d7fce9c03fb0a6c9a1.bindPopup(popup_0a49859ebe03484ef2d9ac9cd6c0f02d)
        ;

        
    
    
            var poly_line_fb8f0bc2e452d65a954c13665b5371a3 = L.polyline(
                [[41.9013502, -87.6614536], [41.9012542, -87.6612976], [41.9012253, -87.6612627], [41.9011863, -87.6612453], [41.9011145, -87.6612319], [41.9007312, -87.6611742]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b91f4de875960d2db7bc7fcb769f4cb5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ae5d69457316fd4de9410f7c41ca5551 = $(`<div id=&quot;html_ae5d69457316fd4de9410f7c41ca5551&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261092285 → 261092289 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/32468937&quot; target=&quot;_blank&quot;>32468937</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>76.59087037633941</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Cortez Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_b91f4de875960d2db7bc7fcb769f4cb5.setContent(html_ae5d69457316fd4de9410f7c41ca5551);
            
        

        poly_line_fb8f0bc2e452d65a954c13665b5371a3.bindPopup(popup_b91f4de875960d2db7bc7fcb769f4cb5)
        ;

        
    
    
            var poly_line_b47016c3bc2c2be9548b08c2694c7c57 = L.polyline(
                [[41.9007312, -87.6611742], [41.9007251, -87.6612366], [41.9007162, -87.6613284], [41.9007917, -87.6613704]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b3e8500c4701b96c1b4cda2646067ccf = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_91076c0678455199e1a7ea413d971f58 = $(`<div id=&quot;html_91076c0678455199e1a7ea413d971f58&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261092289 → 261092281 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24067169&quot; target=&quot;_blank&quot;>24067169</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.95696784312794</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_b3e8500c4701b96c1b4cda2646067ccf.setContent(html_91076c0678455199e1a7ea413d971f58);
            
        

        poly_line_b47016c3bc2c2be9548b08c2694c7c57.bindPopup(popup_b3e8500c4701b96c1b4cda2646067ccf)
        ;

        
    
    
            var poly_line_658c335ab47cad5aef85001c19d6417b = L.polyline(
                [[41.9007312, -87.6611742], [41.9004276, -87.6611188], [41.9003908, -87.6611165], [41.9003525, -87.6611199], [41.9003219, -87.6611474], [41.9001692, -87.6613288], [41.9001478, -87.6613542]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a550716eda566f42f1e60f5f020b6ea1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fe700818c281479ee87fcdde77c9730a = $(`<div id=&quot;html_fe700818c281479ee87fcdde77c9730a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261092289 → 9042234635 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/32468937&quot; target=&quot;_blank&quot;>32468937</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>72.36699171308257</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Cortez Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_a550716eda566f42f1e60f5f020b6ea1.setContent(html_fe700818c281479ee87fcdde77c9730a);
            
        

        poly_line_658c335ab47cad5aef85001c19d6417b.bindPopup(popup_a550716eda566f42f1e60f5f020b6ea1)
        ;

        
    
    
            var poly_line_322dc17846870be10843274003ea4710 = L.polyline(
                [[41.9007312, -87.6611742], [41.9011145, -87.6612319], [41.9011863, -87.6612453], [41.9012253, -87.6612627], [41.9012542, -87.6612976], [41.9013502, -87.6614536]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d1762af5fbc6c5b239339275ff42ec9f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7caca3719219fba0d96762f22ffa5a11 = $(`<div id=&quot;html_7caca3719219fba0d96762f22ffa5a11&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261092289 → 261092285 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/32468937&quot; target=&quot;_blank&quot;>32468937</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>76.59087037633941</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Cortez Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_d1762af5fbc6c5b239339275ff42ec9f.setContent(html_7caca3719219fba0d96762f22ffa5a11);
            
        

        poly_line_322dc17846870be10843274003ea4710.bindPopup(popup_d1762af5fbc6c5b239339275ff42ec9f)
        ;

        
    
    
            var poly_line_78c00b70e0791aa9afc2223a5a70dd71 = L.polyline(
                [[41.898273, -87.6585514], [41.8983488, -87.6585537]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_914e08c054204f0814d956162946291a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_18e56feabb2475328a301901f0718c74 = $(`<div id=&quot;html_18e56feabb2475328a301901f0718c74&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261104757 → 12289051322 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24098076&quot; target=&quot;_blank&quot;>24098076</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>8.430736755798343</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Willard Court</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_914e08c054204f0814d956162946291a.setContent(html_18e56feabb2475328a301901f0718c74);
            
        

        poly_line_78c00b70e0791aa9afc2223a5a70dd71.bindPopup(popup_914e08c054204f0814d956162946291a)
        ;

        
    
    
            var poly_line_a573a768362b03cad8ff1d5c6bfa980c = L.polyline(
                [[41.898273, -87.6585514], [41.8984446, -87.6587779], [41.8986878, -87.6591559], [41.8995979, -87.660552], [41.8997801, -87.660832], [41.8998422, -87.6609825]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_db55ccadb16afecba4e132f18838a0a7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1a1f5da769f8d9a2a41968595438484b = $(`<div id=&quot;html_1a1f5da769f8d9a2a41968595438484b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261104757 → 43503249 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/977115568&quot; target=&quot;_blank&quot;>977115568</a>, <a href=&quot;https://www.openstreetmap.org/way/977115569&quot; target=&quot;_blank&quot;>977115569</a>, <a href=&quot;https://www.openstreetmap.org/way/1185160362&quot; target=&quot;_blank&quot;>1185160362</a>, <a href=&quot;https://www.openstreetmap.org/way/977115567&quot; target=&quot;_blank&quot;>977115567</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>bridge</td><td style='padding:2px 6px;'>yes</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>266.724172385915</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Milwaukee Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_db55ccadb16afecba4e132f18838a0a7.setContent(html_1a1f5da769f8d9a2a41968595438484b);
            
        

        poly_line_a573a768362b03cad8ff1d5c6bfa980c.bindPopup(popup_db55ccadb16afecba4e132f18838a0a7)
        ;

        
    
    
            var poly_line_52072ce198a2f2ec4bc346f9bc465fce = L.polyline(
                [[41.898273, -87.6585514], [41.8982113, -87.6584519], [41.8981454, -87.6583457]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_659318d5af34ffbbf24312db8230e7ff = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fe54d959717a870e173e7a1dcc181910 = $(`<div id=&quot;html_fe54d959717a870e173e7a1dcc181910&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261104757 → 7676191097 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1185229287&quot; target=&quot;_blank&quot;>1185229287</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.162210015696626</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Milwaukee Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_659318d5af34ffbbf24312db8230e7ff.setContent(html_fe54d959717a870e173e7a1dcc181910);
            
        

        poly_line_52072ce198a2f2ec4bc346f9bc465fce.bindPopup(popup_659318d5af34ffbbf24312db8230e7ff)
        ;

        
    
    
            var poly_line_34f9e7bd3134ba70acc075a236b25ca1 = L.polyline(
                [[41.9004246, -87.642465], [41.9003626, -87.6424622], [41.8998264, -87.6424384]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9dae87dcf226dff88f1067fab28ef994 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2168ab5352d7abd789dcdd311f79197c = $(`<div id=&quot;html_2168ab5352d7abd789dcdd311f79197c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261108924 → 261108926 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24069353&quot; target=&quot;_blank&quot;>24069353</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>66.55332190562038</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_9dae87dcf226dff88f1067fab28ef994.setContent(html_2168ab5352d7abd789dcdd311f79197c);
            
        

        poly_line_34f9e7bd3134ba70acc075a236b25ca1.bindPopup(popup_9dae87dcf226dff88f1067fab28ef994)
        ;

        
    
    
            var poly_line_ef91f18782b0c2c7e8b281b677e05487 = L.polyline(
                [[41.9004246, -87.642465], [41.9004166, -87.6429564], [41.9004161, -87.6429886], [41.900416, -87.642992], [41.9004145, -87.6430881]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_686a1e177c959376a1eb68812dd57cd1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9574f9458e5c7af078d3e4ddc486155a = $(`<div id=&quot;html_9574f9458e5c7af078d3e4ddc486155a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261108924 → 261184866 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/210717483&quot; target=&quot;_blank&quot;>210717483</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>51.582051027589415</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Oak Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_686a1e177c959376a1eb68812dd57cd1.setContent(html_9574f9458e5c7af078d3e4ddc486155a);
            
        

        poly_line_ef91f18782b0c2c7e8b281b677e05487.bindPopup(popup_686a1e177c959376a1eb68812dd57cd1)
        ;

        
    
    
            var poly_line_d77d5661aba6139de672ce3d801f5576 = L.polyline(
                [[41.8998264, -87.6424384], [41.9003626, -87.6424622], [41.9004246, -87.642465]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7d10fb20777b30fd30348c850e278646 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4166c0f9c1974d6ba145fbe29d65a32d = $(`<div id=&quot;html_4166c0f9c1974d6ba145fbe29d65a32d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261108926 → 261108924 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24069353&quot; target=&quot;_blank&quot;>24069353</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>66.55332190562038</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_7d10fb20777b30fd30348c850e278646.setContent(html_4166c0f9c1974d6ba145fbe29d65a32d);
            
        

        poly_line_d77d5661aba6139de672ce3d801f5576.bindPopup(popup_7d10fb20777b30fd30348c850e278646)
        ;

        
    
    
            var poly_line_bcd8d860be9a9b5beecd3e8a9cb8a6cb = L.polyline(
                [[41.9030141, -87.6578659], [41.9031652, -87.6580092]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1ea29626cdfc788932c831420ff8a41e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_31c31dcd231cb409e0842076649d251b = $(`<div id=&quot;html_31c31dcd231cb409e0842076649d251b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261112256 → 12187280068 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435393426&quot; target=&quot;_blank&quot;>435393426</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.565509414732592</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_1ea29626cdfc788932c831420ff8a41e.setContent(html_31c31dcd231cb409e0842076649d251b);
            
        

        poly_line_bcd8d860be9a9b5beecd3e8a9cb8a6cb.bindPopup(popup_1ea29626cdfc788932c831420ff8a41e)
        ;

        
    
    
            var poly_line_5b6552045507f146fa23e94081c1eb5e = L.polyline(
                [[41.9030141, -87.6578659], [41.9030424, -87.6577977]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ee2ac407f96d9433176cbfb3a5ac9218 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_521b96418f2a8be11cf54c52d04e3eab = $(`<div id=&quot;html_521b96418f2a8be11cf54c52d04e3eab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261112256 → 11967979300 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/904368559&quot; target=&quot;_blank&quot;>904368559</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>6.4621767592429205</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_ee2ac407f96d9433176cbfb3a5ac9218.setContent(html_521b96418f2a8be11cf54c52d04e3eab);
            
        

        poly_line_5b6552045507f146fa23e94081c1eb5e.bindPopup(popup_ee2ac407f96d9433176cbfb3a5ac9218)
        ;

        
    
    
            var poly_line_03e416857d35e82803025e7eca196ee7 = L.polyline(
                [[41.9030141, -87.6578659], [41.9031261, -87.6578749]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_77925792cdbc8dc4f8e859e9e23773b1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_bb677fe3155da29022a2367b32d369e3 = $(`<div id=&quot;html_bb677fe3155da29022a2367b32d369e3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261112256 → 12187280080 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820026&quot; target=&quot;_blank&quot;>1316820026</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary_link</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>12.476103090250943</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_77925792cdbc8dc4f8e859e9e23773b1.setContent(html_bb677fe3155da29022a2367b32d369e3);
            
        

        poly_line_03e416857d35e82803025e7eca196ee7.bindPopup(popup_77925792cdbc8dc4f8e859e9e23773b1)
        ;

        
    
    
            var poly_line_10aa810633932ee9ea15c8e32ccd43c5 = L.polyline(
                [[41.9030141, -87.6578659], [41.9028997, -87.6577789], [41.9027303, -87.6576552], [41.9023507, -87.6573892]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e943c00ee79bd3cb310c17165dd6f8c6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_021c205a9344fa6d8432076848a3483e = $(`<div id=&quot;html_021c205a9344fa6d8432076848a3483e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261112256 → 12187235194 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59196050&quot; target=&quot;_blank&quot;>59196050</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>83.66123129399375</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_e943c00ee79bd3cb310c17165dd6f8c6.setContent(html_021c205a9344fa6d8432076848a3483e);
            
        

        poly_line_10aa810633932ee9ea15c8e32ccd43c5.bindPopup(popup_e943c00ee79bd3cb310c17165dd6f8c6)
        ;

        
    
    
            var poly_line_7a0bcbba3f89db098d30a31b4e17966b = L.polyline(
                [[41.8971417, -87.6575304], [41.8970059, -87.6575267]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b875b5fb73a318c1b78c74d23cf2730e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9f299778a3c98c151275bbc9ac302b00 = $(`<div id=&quot;html_9f299778a3c98c151275bbc9ac302b00&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261116820 → 4593178662 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24442831&quot; target=&quot;_blank&quot;>24442831</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>15.103397385825186</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Racine Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_b875b5fb73a318c1b78c74d23cf2730e.setContent(html_9f299778a3c98c151275bbc9ac302b00);
            
        

        poly_line_7a0bcbba3f89db098d30a31b4e17966b.bindPopup(popup_b875b5fb73a318c1b78c74d23cf2730e)
        ;

        
    
    
            var poly_line_1297caa8cee3c45af4d0ad30c92c81d2 = L.polyline(
                [[41.8971417, -87.6575304], [41.8971407, -87.6576336], [41.8971376, -87.6579515]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_132c32e656a75429e234050c1d185096 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2dcc4431a25aec1a9ca5ccc2cda43ad7 = $(`<div id=&quot;html_2dcc4431a25aec1a9ca5ccc2cda43ad7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261116820 → 739967903 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24070828&quot; target=&quot;_blank&quot;>24070828</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>34.85637240121205</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Fry Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_132c32e656a75429e234050c1d185096.setContent(html_2dcc4431a25aec1a9ca5ccc2cda43ad7);
            
        

        poly_line_1297caa8cee3c45af4d0ad30c92c81d2.bindPopup(popup_132c32e656a75429e234050c1d185096)
        ;

        
    
    
            var poly_line_105e2ebc0932f0454c49c0673ac2121a = L.polyline(
                [[41.8971417, -87.6575304], [41.8974983, -87.6575401], [41.8975294, -87.6575409]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_73134e1faa4f8d4b397adae5592b82f0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_677b645c23229c1039ca4fc615ae8d3d = $(`<div id=&quot;html_677b645c23229c1039ca4fc615ae8d3d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261116820 → 12289051302 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24442831&quot; target=&quot;_blank&quot;>24442831</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>43.1190945920449</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Racine Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_73134e1faa4f8d4b397adae5592b82f0.setContent(html_677b645c23229c1039ca4fc615ae8d3d);
            
        

        poly_line_105e2ebc0932f0454c49c0673ac2121a.bindPopup(popup_73134e1faa4f8d4b397adae5592b82f0)
        ;

        
    
    
            var poly_line_a26206d40f994ca1eef9000f17f0c807 = L.polyline(
                [[41.8974251, -87.651931], [41.8973758, -87.6519288]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_330c8db13aa058bf316fb104b8f04ecb = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0a01314f4ffa2d94923550cfaa90b825 = $(`<div id=&quot;html_0a01314f4ffa2d94923550cfaa90b825&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261116824 → 12233690212 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1213414739&quot; target=&quot;_blank&quot;>1213414739</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>5.484940913468805</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Sangamon Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_330c8db13aa058bf316fb104b8f04ecb.setContent(html_0a01314f4ffa2d94923550cfaa90b825);
            
        

        poly_line_a26206d40f994ca1eef9000f17f0c807.bindPopup(popup_330c8db13aa058bf316fb104b8f04ecb)
        ;

        
    
    
            var poly_line_e600787b0a58b04d497fa2e6879aa051 = L.polyline(
                [[41.8974251, -87.651931], [41.8974238, -87.6520235], [41.8973948, -87.6521028]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_64516ae5b6f5556628614f0034096c85 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1402b91f1d541b5fdfa29840a54a39c0 = $(`<div id=&quot;html_1402b91f1d541b5fdfa29840a54a39c0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261116824 → 12233690216 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1213414740&quot; target=&quot;_blank&quot;>1213414740</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>14.970126318473277</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Fry Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_64516ae5b6f5556628614f0034096c85.setContent(html_1402b91f1d541b5fdfa29840a54a39c0);
            
        

        poly_line_e600787b0a58b04d497fa2e6879aa051.bindPopup(popup_64516ae5b6f5556628614f0034096c85)
        ;

        
    
    
            var poly_line_d08af9b21d5bc3a19bf10c771df58c44 = L.polyline(
                [[41.8973321, -87.6552577], [41.8973302, -87.6553639], [41.8973221, -87.655769]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3e58fd71bd266dcb2e83663edb50585a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4a2a6819c2f6d4b8ddd5dc58f33e405f = $(`<div id=&quot;html_4a2a6819c2f6d4b8ddd5dc58f33e405f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261116828 → 10885523395 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24070830&quot; target=&quot;_blank&quot;>24070830</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>42.33352812208809</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Fry Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_3e58fd71bd266dcb2e83663edb50585a.setContent(html_4a2a6819c2f6d4b8ddd5dc58f33e405f);
            
        

        poly_line_d08af9b21d5bc3a19bf10c771df58c44.bindPopup(popup_3e58fd71bd266dcb2e83663edb50585a)
        ;

        
    
    
            var poly_line_5656d673ccb3099c64e1e3d9c3205a22 = L.polyline(
                [[41.8973321, -87.6552577], [41.8973342, -87.6551508], [41.8973393, -87.6548943], [41.8973421, -87.6547539]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_15e58699a80751ae14e0cd1b3621c3ef = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_affb685c70fe24c28f8af79c6c4d0065 = $(`<div id=&quot;html_affb685c70fe24c28f8af79c6c4d0065&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261116828 → 4100010516 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24070830&quot; target=&quot;_blank&quot;>24070830</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>41.71295730489112</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Fry Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_15e58699a80751ae14e0cd1b3621c3ef.setContent(html_affb685c70fe24c28f8af79c6c4d0065);
            
        

        poly_line_5656d673ccb3099c64e1e3d9c3205a22.bindPopup(popup_15e58699a80751ae14e0cd1b3621c3ef)
        ;

        
    
    
            var poly_line_4fb2052668842fa796dd24d40d3c2e4b = L.polyline(
                [[41.8973321, -87.6552577], [41.8974168, -87.6552605], [41.8977252, -87.6552696]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ffbcab3b0613f4ae3f8627b8adc833c9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_96c04a20d6423191b659e221c283e183 = $(`<div id=&quot;html_96c04a20d6423191b659e221c283e183&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261116828 → 4035706300 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/773798019&quot; target=&quot;_blank&quot;>773798019</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>43.721908383037245</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North May Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_ffbcab3b0613f4ae3f8627b8adc833c9.setContent(html_96c04a20d6423191b659e221c283e183);
            
        

        poly_line_4fb2052668842fa796dd24d40d3c2e4b.bindPopup(popup_ffbcab3b0613f4ae3f8627b8adc833c9)
        ;

        
    
    
            var poly_line_986e816a20525a92db342bab60cebcb6 = L.polyline(
                [[41.897307, -87.6565669], [41.8973085, -87.6564495], [41.8973127, -87.6562378]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f4a0e78caf563440b9fecd62302c755a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7709a345045d0f6cd0a859848def7fc8 = $(`<div id=&quot;html_7709a345045d0f6cd0a859848def7fc8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261116829 → 4035706295 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24070830&quot; target=&quot;_blank&quot;>24070830</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>27.24636325613684</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Fry Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_f4a0e78caf563440b9fecd62302c755a.setContent(html_7709a345045d0f6cd0a859848def7fc8);
            
        

        poly_line_986e816a20525a92db342bab60cebcb6.bindPopup(popup_f4a0e78caf563440b9fecd62302c755a)
        ;

        
    
    
            var poly_line_f64dc3a377f0202732ee9649ab8f860c = L.polyline(
                [[41.897307, -87.6565669], [41.8975515, -87.6565742], [41.8977055, -87.6565758]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_804d51c366a323b2ef970c69722e9450 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1b183b473b0170047b56bfbe580aec41 = $(`<div id=&quot;html_1b183b473b0170047b56bfbe580aec41&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261116829 → 4035706301 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1386550109&quot; target=&quot;_blank&quot;>1386550109</a>, <a href=&quot;https://www.openstreetmap.org/way/435657941&quot; target=&quot;_blank&quot;>435657941</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>3</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>44.31846586033533</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_804d51c366a323b2ef970c69722e9450.setContent(html_1b183b473b0170047b56bfbe580aec41);
            
        

        poly_line_f64dc3a377f0202732ee9649ab8f860c.bindPopup(popup_804d51c366a323b2ef970c69722e9450)
        ;

        
    
    
            var poly_line_454bb03e46abe570e46e4b3bb78d21da = L.polyline(
                [[41.897307, -87.6565669], [41.8970883, -87.6565566], [41.8970635, -87.6565565]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a51b71802a753c87ce340d54615fb2c9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_bfd4e29dd05ac8bb6123d19d59823fe0 = $(`<div id=&quot;html_bfd4e29dd05ac8bb6123d19d59823fe0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261116829 → 11967979365 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435657943&quot; target=&quot;_blank&quot;>435657943</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>3</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>27.090953412631613</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_a51b71802a753c87ce340d54615fb2c9.setContent(html_bfd4e29dd05ac8bb6123d19d59823fe0);
            
        

        poly_line_454bb03e46abe570e46e4b3bb78d21da.bindPopup(popup_a51b71802a753c87ce340d54615fb2c9)
        ;

        
    
    
            var poly_line_e7d17b6939bd32320e48af008de2e5e9 = L.polyline(
                [[41.9006766, -87.6566601], [41.9006749, -87.6567555]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_cb17a159e66d684f979e688046925929 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9a80ae893c051abf0153ea5abadc42d4 = $(`<div id=&quot;html_9a80ae893c051abf0153ea5abadc42d4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261119878 → 11967979324 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24071514&quot; target=&quot;_blank&quot;>24071514</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.897844027411509</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Cortez Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_cb17a159e66d684f979e688046925929.setContent(html_9a80ae893c051abf0153ea5abadc42d4);
            
        

        poly_line_e7d17b6939bd32320e48af008de2e5e9.bindPopup(popup_cb17a159e66d684f979e688046925929)
        ;

        
    
    
            var poly_line_fdbbd6d2b94dde1b5e89b36481aafd3e = L.polyline(
                [[41.9006766, -87.6566601], [41.9011699, -87.6566732], [41.9012592, -87.6566876], [41.9013114, -87.6567], [41.9013783, -87.6567276], [41.901473, -87.656789], [41.9015986, -87.6568759]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e35aeb914d060daf481d0d02bdc30b33 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1670259499637f219365caf5c024ff77 = $(`<div id=&quot;html_1670259499637f219365caf5c024ff77&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261119878 → 12784139034 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59196050&quot; target=&quot;_blank&quot;>59196050</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>105.94170988900017</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_e35aeb914d060daf481d0d02bdc30b33.setContent(html_1670259499637f219365caf5c024ff77);
            
        

        poly_line_fdbbd6d2b94dde1b5e89b36481aafd3e.bindPopup(popup_e35aeb914d060daf481d0d02bdc30b33)
        ;

        
    
    
            var poly_line_8a9cb6f2b995ef98cf8fb76c2630200c = L.polyline(
                [[41.9006766, -87.6566601], [41.9006008, -87.656657], [41.8998866, -87.6566342]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_34fbcb5e5c9c078376423a270935767c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9939d8d5cf14f954b648f39f8f0342c1 = $(`<div id=&quot;html_9939d8d5cf14f954b648f39f8f0342c1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261119878 → 261185602 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59196050&quot; target=&quot;_blank&quot;>59196050</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>87.87043574244412</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_34fbcb5e5c9c078376423a270935767c.setContent(html_9939d8d5cf14f954b648f39f8f0342c1);
            
        

        poly_line_8a9cb6f2b995ef98cf8fb76c2630200c.bindPopup(popup_34fbcb5e5c9c078376423a270935767c)
        ;

        
    
    
            var poly_line_cca7b881588b81a9e0f24ae9caffb098 = L.polyline(
                [[41.90063, -87.6501345], [41.9009058, -87.6495241]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d36d69608b7fd3eb82bb2a30b0d60cb2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_08340af2f083adcd0b38d2c8b47d82bd = $(`<div id=&quot;html_08340af2f083adcd0b38d2c8b47d82bd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261126253 → 7932870409 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24072656&quot; target=&quot;_blank&quot;>24072656</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>59.098319377560294</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Haines Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_d36d69608b7fd3eb82bb2a30b0d60cb2.setContent(html_08340af2f083adcd0b38d2c8b47d82bd);
            
        

        poly_line_cca7b881588b81a9e0f24ae9caffb098.bindPopup(popup_d36d69608b7fd3eb82bb2a30b0d60cb2)
        ;

        
    
    
            var poly_line_42bb0b43694945916d8c0ee62f019d9b = L.polyline(
                [[41.90063, -87.6501345], [41.9016908, -87.6510086]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_386cd2b3dda2f1558061ac1067507231 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_16cf76204226c46202eaae409538ac1d = $(`<div id=&quot;html_16cf76204226c46202eaae409538ac1d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261126253 → 261135168 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1125567629&quot; target=&quot;_blank&quot;>1125567629</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>138.37267225067328</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Hickory Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_386cd2b3dda2f1558061ac1067507231.setContent(html_16cf76204226c46202eaae409538ac1d);
            
        

        poly_line_42bb0b43694945916d8c0ee62f019d9b.bindPopup(popup_386cd2b3dda2f1558061ac1067507231)
        ;

        
    
    
            var poly_line_e91a39f6a537a66b79b36e23cbca667c = L.polyline(
                [[41.90063, -87.6501345], [41.9005143, -87.6503263], [41.9004427, -87.6503965], [41.9003585, -87.6504792]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a1c63fffc82f7ca364fe98c9921c123b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c82dcf5435880bc22b05959b22faa142 = $(`<div id=&quot;html_c82dcf5435880bc22b05959b22faa142&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261126253 → 261249589 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24072656&quot; target=&quot;_blank&quot;>24072656</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>41.886522175707654</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Haines Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_a1c63fffc82f7ca364fe98c9921c123b.setContent(html_c82dcf5435880bc22b05959b22faa142);
            
        

        poly_line_e91a39f6a537a66b79b36e23cbca667c.bindPopup(popup_a1c63fffc82f7ca364fe98c9921c123b)
        ;

        
    
    
            var poly_line_3c22220263b38eafe4495530cfd95243 = L.polyline(
                [[41.9011584, -87.648965], [41.9012069, -87.6488621], [41.9015146, -87.6482091]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2ce6e80b8a143605082b4cb5d84c584a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8c5483ff1c1d37323fac0f00e5c39f81 = $(`<div id=&quot;html_8c5483ff1c1d37323fac0f00e5c39f81&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261126254 → 3762220113 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24072656&quot; target=&quot;_blank&quot;>24072656</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>74.04391963547211</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Haines Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_2ce6e80b8a143605082b4cb5d84c584a.setContent(html_8c5483ff1c1d37323fac0f00e5c39f81);
            
        

        poly_line_3c22220263b38eafe4495530cfd95243.bindPopup(popup_2ce6e80b8a143605082b4cb5d84c584a)
        ;

        
    
    
            var poly_line_c84b60cd88606e83bf88f599928d1905 = L.polyline(
                [[41.9011584, -87.648965], [41.901122, -87.6490455], [41.9009058, -87.6495241]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9c39b77addf9b78172690ca4a8cce081 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4acc57284366113718844c94b0fad524 = $(`<div id=&quot;html_4acc57284366113718844c94b0fad524&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261126254 → 7932870409 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24072656&quot; target=&quot;_blank&quot;>24072656</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>54.13013720743516</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Haines Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_9c39b77addf9b78172690ca4a8cce081.setContent(html_4acc57284366113718844c94b0fad524);
            
        

        poly_line_c84b60cd88606e83bf88f599928d1905.bindPopup(popup_9c39b77addf9b78172690ca4a8cce081)
        ;

        
    
    
            var poly_line_7fbaed2957c8a0e417f8bd97836eba3b = L.polyline(
                [[41.9011584, -87.648965], [41.9012182, -87.6490063], [41.9027467, -87.6502541]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_04898525b06ab9e99708618b434c6d2f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_500d7279a07d357222ffb0a9b40f1728 = $(`<div id=&quot;html_500d7279a07d357222ffb0a9b40f1728&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261126254 → 2168537800 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24372003&quot; target=&quot;_blank&quot;>24372003</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>206.35226323891584</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Hooker Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_04898525b06ab9e99708618b434c6d2f.setContent(html_500d7279a07d357222ffb0a9b40f1728);
            
        

        poly_line_7fbaed2957c8a0e417f8bd97836eba3b.bindPopup(popup_04898525b06ab9e99708618b434c6d2f)
        ;

        
    
    
            var poly_line_7afac78a710ea6e54ece96ac7c726318 = L.polyline(
                [[41.9011584, -87.648965], [41.901093, -87.6489057], [41.9003659, -87.6482863]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c82b0a6452f389d55e42c33ccca2d759 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c35a1ebce906fe1b05928455887e0470 = $(`<div id=&quot;html_c35a1ebce906fe1b05928455887e0470&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261126254 → 5492726814 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24372003&quot; target=&quot;_blank&quot;>24372003</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>104.50542869350228</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Hooker Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_c82b0a6452f389d55e42c33ccca2d759.setContent(html_c35a1ebce906fe1b05928455887e0470);
            
        

        poly_line_7afac78a710ea6e54ece96ac7c726318.bindPopup(popup_c82b0a6452f389d55e42c33ccca2d759)
        ;

        
    
    
            var poly_line_ba5f759a8d3f202edd5c4ec97dfdf0f7 = L.polyline(
                [[41.9011818, -87.6520949], [41.9012123, -87.6521525]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5b0e5d34114ed73b6fee7607af0b53a9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_803c15acace2f4db086df51bf405e4e0 = $(`<div id=&quot;html_803c15acace2f4db086df51bf405e4e0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261135167 → 12177117285 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1125567637&quot; target=&quot;_blank&quot;>1125567637</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>5.850403409268549</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_5b0e5d34114ed73b6fee7607af0b53a9.setContent(html_803c15acace2f4db086df51bf405e4e0);
            
        

        poly_line_ba5f759a8d3f202edd5c4ec97dfdf0f7.bindPopup(popup_5b0e5d34114ed73b6fee7607af0b53a9)
        ;

        
    
    
            var poly_line_6e3fbaf6c67a11456501406a9831f268 = L.polyline(
                [[41.9011818, -87.6520949], [41.9012271, -87.6519939], [41.9012416, -87.6519615]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_61d0ede59247aebfc5767d8fc27555f7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c5ee6b9fdb6fe476f8bfd9f5111671f8 = $(`<div id=&quot;html_c5ee6b9fdb6fe476f8bfd9f5111671f8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261135167 → 10198867985 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24074461&quot; target=&quot;_blank&quot;>24074461</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>12.888274195764089</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Bliss Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_61d0ede59247aebfc5767d8fc27555f7.setContent(html_c5ee6b9fdb6fe476f8bfd9f5111671f8);
            
        

        poly_line_6e3fbaf6c67a11456501406a9831f268.bindPopup(popup_61d0ede59247aebfc5767d8fc27555f7)
        ;

        
    
    
            var poly_line_cba106b17cb02064954fc7ed694753b3 = L.polyline(
                [[41.9011818, -87.6520949], [41.9010926, -87.6519264], [41.9010221, -87.6517933]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8708e2773df07e0f8529230ce2a7404f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_80c606cacf650d871589fd335b6efdd2 = $(`<div id=&quot;html_80c606cacf650d871589fd335b6efdd2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261135167 → 5778508827 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1125567637&quot; target=&quot;_blank&quot;>1125567637</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>30.633303326473396</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_8708e2773df07e0f8529230ce2a7404f.setContent(html_80c606cacf650d871589fd335b6efdd2);
            
        

        poly_line_cba106b17cb02064954fc7ed694753b3.bindPopup(popup_8708e2773df07e0f8529230ce2a7404f)
        ;

        
    
    
            var poly_line_911459b521dea70d1f7b89cb90a58723 = L.polyline(
                [[41.9016908, -87.6510086], [41.9020243, -87.6512834]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ef6a31a8a4ab120a7c962e78212c9460 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8ab8ea0267f7f7dcd04bb911b2bfd3a4 = $(`<div id=&quot;html_8ab8ea0267f7f7dcd04bb911b2bfd3a4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261135168 → 6372221643 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1125567629&quot; target=&quot;_blank&quot;>1125567629</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>43.50202992785703</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Hickory Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_ef6a31a8a4ab120a7c962e78212c9460.setContent(html_8ab8ea0267f7f7dcd04bb911b2bfd3a4);
            
        

        poly_line_911459b521dea70d1f7b89cb90a58723.bindPopup(popup_ef6a31a8a4ab120a7c962e78212c9460)
        ;

        
    
    
            var poly_line_6a06df45ea33ffc1d9e49f7df5ce3eb6 = L.polyline(
                [[41.9016908, -87.6510086], [41.90063, -87.6501345]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_45bfdcb28d8c8b756b2a9ab76b1d226a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f4eae32abd297bb43efc1e8d795328a1 = $(`<div id=&quot;html_f4eae32abd297bb43efc1e8d795328a1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261135168 → 261126253 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1125567629&quot; target=&quot;_blank&quot;>1125567629</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>138.37267225067328</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Hickory Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_45bfdcb28d8c8b756b2a9ab76b1d226a.setContent(html_f4eae32abd297bb43efc1e8d795328a1);
            
        

        poly_line_6a06df45ea33ffc1d9e49f7df5ce3eb6.bindPopup(popup_45bfdcb28d8c8b756b2a9ab76b1d226a)
        ;

        
    
    
            var poly_line_6824eb48f692abd0f5e4b4d5de8eb160 = L.polyline(
                [[41.9016908, -87.6510086], [41.901667, -87.6510588], [41.9014058, -87.651609]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d9d15374ef574bd5c83f4bc238cebe0c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_74af904283268d61d91c890726f2cb71 = $(`<div id=&quot;html_74af904283268d61d91c890726f2cb71&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261135168 → 6776130125 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24074461&quot; target=&quot;_blank&quot;>24074461</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>58.93561990936165</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Bliss Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_d9d15374ef574bd5c83f4bc238cebe0c.setContent(html_74af904283268d61d91c890726f2cb71);
            
        

        poly_line_6824eb48f692abd0f5e4b4d5de8eb160.bindPopup(popup_d9d15374ef574bd5c83f4bc238cebe0c)
        ;

        
    
    
            var poly_line_75d62b1a4d04d3f5cbbb89b9c35732da = L.polyline(
                [[41.9108786, -87.6511199], [41.9107893, -87.651117], [41.9103612, -87.651103]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_18067a1cf8b88de01ed4fc7b0a67fdb1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4807ed6fb37593c28a804a3f39a36efa = $(`<div id=&quot;html_4807ed6fb37593c28a804a3f39a36efa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261147600 → 2401648293 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24111763&quot; target=&quot;_blank&quot;>24111763</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>57.54933074458345</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Fremont Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_18067a1cf8b88de01ed4fc7b0a67fdb1.setContent(html_4807ed6fb37593c28a804a3f39a36efa);
            
        

        poly_line_75d62b1a4d04d3f5cbbb89b9c35732da.bindPopup(popup_18067a1cf8b88de01ed4fc7b0a67fdb1)
        ;

        
    
    
            var poly_line_1ec6f19876ffb065376eee775f146403 = L.polyline(
                [[41.9108786, -87.6511199], [41.9109605, -87.6511275], [41.9110826, -87.651136]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_bcb857aec54ffcae10518355931bca85 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8edc9dedf3c8321b7de08b1b0b2eb449 = $(`<div id=&quot;html_8edc9dedf3c8321b7de08b1b0b2eb449&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261147600 → 2109658710 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/668572522&quot; target=&quot;_blank&quot;>668572522</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>access</td><td style='padding:2px 6px;'>customers</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.723693580508126</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_bcb857aec54ffcae10518355931bca85.setContent(html_8edc9dedf3c8321b7de08b1b0b2eb449);
            
        

        poly_line_1ec6f19876ffb065376eee775f146403.bindPopup(popup_bcb857aec54ffcae10518355931bca85)
        ;

        
    
    
            var poly_line_0954c9b704ad575107081e8f404d227e = L.polyline(
                [[41.9108786, -87.6511199], [41.9108804, -87.6509966], [41.9108811, -87.6509496], [41.9108844, -87.6507236]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_cd2255c4bb160c0c33679bb74fc0b048 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4e505135ea9f4cb6d498108d30311b59 = $(`<div id=&quot;html_4e505135ea9f4cb6d498108d30311b59&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261147600 → 11891975116 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1281243503&quot; target=&quot;_blank&quot;>1281243503</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>primary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>32.80003953277456</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West North Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>ref</td><td style='padding:2px 6px;'>IL 64</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_cd2255c4bb160c0c33679bb74fc0b048.setContent(html_4e505135ea9f4cb6d498108d30311b59);
            
        

        poly_line_0954c9b704ad575107081e8f404d227e.bindPopup(popup_cd2255c4bb160c0c33679bb74fc0b048)
        ;

        
    
    
            var poly_line_919d5a2a3ba858ffdd17b5d48878b63b = L.polyline(
                [[41.9108786, -87.6511199], [41.9108773, -87.6512277], [41.9108751, -87.6513579]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0538cbd6c56b1addbe62c3e9057b703e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5087062283412705d7235b9ca9ef58d8 = $(`<div id=&quot;html_5087062283412705d7235b9ca9ef58d8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261147600 → 12195807199 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1326511828&quot; target=&quot;_blank&quot;>1326511828</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>primary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>5</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.698373229626284</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West North Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>ref</td><td style='padding:2px 6px;'>IL 64</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_0538cbd6c56b1addbe62c3e9057b703e.setContent(html_5087062283412705d7235b9ca9ef58d8);
            
        

        poly_line_919d5a2a3ba858ffdd17b5d48878b63b.bindPopup(popup_0538cbd6c56b1addbe62c3e9057b703e)
        ;

        
    
    
            var poly_line_04f6c9dfda4e19415cd1fb554dd10fe6 = L.polyline(
                [[41.905036, -87.6521517], [41.905005, -87.6522232]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d811dab72492f94730b41745d68238e6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e7543202aa119651a4689357143ca2b1 = $(`<div id=&quot;html_e7543202aa119651a4689357143ca2b1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261150714 → 5493314555 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626381&quot; target=&quot;_blank&quot;>571626381</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>6.84797386447993</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Evergreen Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_d811dab72492f94730b41745d68238e6.setContent(html_e7543202aa119651a4689357143ca2b1);
            
        

        poly_line_04f6c9dfda4e19415cd1fb554dd10fe6.bindPopup(popup_d811dab72492f94730b41745d68238e6)
        ;

        
    
    
            var poly_line_c962e9d7a6c2a2f080827d9c2857f7ef = L.polyline(
                [[41.905036, -87.6521517], [41.9045151, -87.6517175]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_cc970738600afe37ccdaefea89598584 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_eb646238320ce113233a01e87becd631 = $(`<div id=&quot;html_eb646238320ce113233a01e87becd631&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261150714 → 5493314579 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1125567620&quot; target=&quot;_blank&quot;>1125567620</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>68.16236391724703</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Hooker Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_cc970738600afe37ccdaefea89598584.setContent(html_eb646238320ce113233a01e87becd631);
            
        

        poly_line_c962e9d7a6c2a2f080827d9c2857f7ef.bindPopup(popup_cc970738600afe37ccdaefea89598584)
        ;

        
    
    
            var poly_line_c2485b6c135b9604763ca3a1bceba9eb = L.polyline(
                [[41.905036, -87.6521517], [41.9051072, -87.652212], [41.9053314, -87.6524021], [41.9053427, -87.6524581]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5cf5b4af78ecee4be00e1c35f6cc234a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c846fcc6326172aadae1ce7c8d1fbb33 = $(`<div id=&quot;html_c846fcc6326172aadae1ce7c8d1fbb33&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261150714 → 5493314570 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626374&quot; target=&quot;_blank&quot;>571626374</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>43.639103399883304</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_5cf5b4af78ecee4be00e1c35f6cc234a.setContent(html_c846fcc6326172aadae1ce7c8d1fbb33);
            
        

        poly_line_c2485b6c135b9604763ca3a1bceba9eb.bindPopup(popup_5cf5b4af78ecee4be00e1c35f6cc234a)
        ;

        
    
    
            var poly_line_5fc047f4bd2e664b49008778cad76ebd = L.polyline(
                [[41.9074541, -87.6494137], [41.9074524, -87.649519], [41.9074413, -87.6502216], [41.9074223, -87.6502621]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0f4cdb841f7847b3a60179337eb63a91 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7c4e82d0ad5c8b45fb13e4314f4986d5 = $(`<div id=&quot;html_7c4e82d0ad5c8b45fb13e4314f4986d5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261162243 → 5493322790 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24079428&quot; target=&quot;_blank&quot;>24079428</a>, <a href=&quot;https://www.openstreetmap.org/way/1077476823&quot; target=&quot;_blank&quot;>1077476823</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>70.83407630673223</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Eastman Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_0f4cdb841f7847b3a60179337eb63a91.setContent(html_7c4e82d0ad5c8b45fb13e4314f4986d5);
            
        

        poly_line_5fc047f4bd2e664b49008778cad76ebd.bindPopup(popup_0f4cdb841f7847b3a60179337eb63a91)
        ;

        
    
    
            var poly_line_82e05ef31b50426b687ac88cbf01c010 = L.polyline(
                [[41.9074541, -87.6494137], [41.9074551, -87.6493051], [41.9074601, -87.6487926]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f52486a9030c0fda6d6b9966afbb7aa4 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1372b7d07a402cf7f1186b1b9b0f4aba = $(`<div id=&quot;html_1372b7d07a402cf7f1186b1b9b0f4aba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261162243 → 2401648294 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24079428&quot; target=&quot;_blank&quot;>24079428</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>51.40291522218805</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Eastman Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_f52486a9030c0fda6d6b9966afbb7aa4.setContent(html_1372b7d07a402cf7f1186b1b9b0f4aba);
            
        

        poly_line_82e05ef31b50426b687ac88cbf01c010.bindPopup(popup_f52486a9030c0fda6d6b9966afbb7aa4)
        ;

        
    
    
            var poly_line_9c9b056330c5eb74585ab9509f8ff7f9 = L.polyline(
                [[41.9074541, -87.6494137], [41.9075407, -87.649416], [41.9077867, -87.6494227]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_df1505c8b9939d37c218742aa4305565 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fb3f06fe6d71be60047bc238986eafc3 = $(`<div id=&quot;html_fb3f06fe6d71be60047bc238986eafc3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261162243 → 7536224405 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24103945&quot; target=&quot;_blank&quot;>24103945</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>36.99098434963186</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Dayton Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_df1505c8b9939d37c218742aa4305565.setContent(html_fb3f06fe6d71be60047bc238986eafc3);
            
        

        poly_line_9c9b056330c5eb74585ab9509f8ff7f9.bindPopup(popup_df1505c8b9939d37c218742aa4305565)
        ;

        
    
    
            var poly_line_45d6666c5e79a3aa900d292b37164582 = L.polyline(
                [[41.9074541, -87.6494137], [41.9073821, -87.6494108], [41.9064367, -87.6493726], [41.9063714, -87.64937]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2dd8cc59b04cc78086d62a5bf4d821a8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_087b4201ccec1bd325a83e3020e8ad3a = $(`<div id=&quot;html_087b4201ccec1bd325a83e3020e8ad3a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261162243 → 261260014 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24103945&quot; target=&quot;_blank&quot;>24103945</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>120.44522132319888</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Dayton Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_2dd8cc59b04cc78086d62a5bf4d821a8.setContent(html_087b4201ccec1bd325a83e3020e8ad3a);
            
        

        poly_line_45d6666c5e79a3aa900d292b37164582.bindPopup(popup_2dd8cc59b04cc78086d62a5bf4d821a8)
        ;

        
    
    
            var poly_line_b8632f9cc0b557c6d38ecb041c018bda = L.polyline(
                [[41.9070829, -87.6509539], [41.9071054, -87.6509745]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_37feca7e25d91ee6f946fc3e33845c9a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_94e2d7c96bc8dda4d9eca754fd469a3c = $(`<div id=&quot;html_94e2d7c96bc8dda4d9eca754fd469a3c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261162245 → 734238221 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273622070&quot; target=&quot;_blank&quot;>273622070</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>3.0274749295671866</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_37feca7e25d91ee6f946fc3e33845c9a.setContent(html_94e2d7c96bc8dda4d9eca754fd469a3c);
            
        

        poly_line_b8632f9cc0b557c6d38ecb041c018bda.bindPopup(popup_37feca7e25d91ee6f946fc3e33845c9a)
        ;

        
    
    
            var poly_line_fd2fa12e5b5dd76bec9bf14636960212 = L.polyline(
                [[41.9070829, -87.6509539], [41.9070161, -87.6508988], [41.9065372, -87.6504975]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_148d52d4611435a713295fd181faedd8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_79839ff68c76807a7cbd247feb3c439d = $(`<div id=&quot;html_79839ff68c76807a7cbd247feb3c439d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261162245 → 5493322787 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273622070&quot; target=&quot;_blank&quot;>273622070</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>71.47385640542913</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_148d52d4611435a713295fd181faedd8.setContent(html_79839ff68c76807a7cbd247feb3c439d);
            
        

        poly_line_fd2fa12e5b5dd76bec9bf14636960212.bindPopup(popup_148d52d4611435a713295fd181faedd8)
        ;

        
    
    
            var poly_line_887379643fada313e34761e59e2cc7f3 = L.polyline(
                [[41.9070829, -87.6509539], [41.9071306, -87.6508535], [41.9071409, -87.6508318], [41.9071514, -87.6508105], [41.9074223, -87.6502621]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e99f9e9600cdb61f064526ee7bd051bf = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f78b53baa95aead42c8973f4c829704c = $(`<div id=&quot;html_f78b53baa95aead42c8973f4c829704c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261162245 → 5493322790 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1077476823&quot; target=&quot;_blank&quot;>1077476823</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>68.5711176279587</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Eastman Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_e99f9e9600cdb61f064526ee7bd051bf.setContent(html_f78b53baa95aead42c8973f4c829704c);
            
        

        poly_line_887379643fada313e34761e59e2cc7f3.bindPopup(popup_e99f9e9600cdb61f064526ee7bd051bf)
        ;

        
    
    
            var poly_line_d4cdfaf2ac3cf28b357ae832d527ffaa = L.polyline(
                [[41.9050525, -87.6553145], [41.904611, -87.6562471], [41.9045679, -87.6563384]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_412d53385b276813ef1e70ca268e5696 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b6bdb36f816eab4c870f03274553c10c = $(`<div id=&quot;html_b6bdb36f816eab4c870f03274553c10c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261162252 → 261162253 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24079431&quot; target=&quot;_blank&quot;>24079431</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>100.41766190484202</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Eastman Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_412d53385b276813ef1e70ca268e5696.setContent(html_b6bdb36f816eab4c870f03274553c10c);
            
        

        poly_line_d4cdfaf2ac3cf28b357ae832d527ffaa.bindPopup(popup_412d53385b276813ef1e70ca268e5696)
        ;

        
    
    
            var poly_line_6ed41cedd52c48194eab49ba50d3273b = L.polyline(
                [[41.9050525, -87.6553145], [41.9049416, -87.6552553], [41.9049153, -87.6552361], [41.9048941, -87.6552206], [41.9039373, -87.6544389]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c558959f3053a127d608e5e8ec831ed0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_142171b5baef7ac4f915597e1f49f777 = $(`<div id=&quot;html_142171b5baef7ac4f915597e1f49f777&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261162252 → 5493314481 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59204024&quot; target=&quot;_blank&quot;>59204024</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>143.79690186831448</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Cherry Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_c558959f3053a127d608e5e8ec831ed0.setContent(html_142171b5baef7ac4f915597e1f49f777);
            
        

        poly_line_6ed41cedd52c48194eab49ba50d3273b.bindPopup(popup_c558959f3053a127d608e5e8ec831ed0)
        ;

        
    
    
            var poly_line_de9633a0f3cb4cd018980f5da4e07670 = L.polyline(
                [[41.9050525, -87.6553145], [41.9051377, -87.6553464], [41.9052116, -87.655369], [41.905227, -87.6553737], [41.9053139, -87.6553954]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4f3a8036efdd740d05bb525fd8785870 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4855b9379119d8a9ba532e14bcb7a9ae = $(`<div id=&quot;html_4855b9379119d8a9ba532e14bcb7a9ae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261162252 → 5493314543 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59204024&quot; target=&quot;_blank&quot;>59204024</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>29.846578066529148</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Cherry Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_4f3a8036efdd740d05bb525fd8785870.setContent(html_4855b9379119d8a9ba532e14bcb7a9ae);
            
        

        poly_line_de9633a0f3cb4cd018980f5da4e07670.bindPopup(popup_4f3a8036efdd740d05bb525fd8785870)
        ;

        
    
    
            var poly_line_cc19d826745b714acf34b81716d8d0aa = L.polyline(
                [[41.9045679, -87.6563384], [41.9046172, -87.6563832]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_655a815dd99428b0ba655aee828d41c0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_71b8615c5739fd0d6c15f45c7a22e82f = $(`<div id=&quot;html_71b8615c5739fd0d6c15f45c7a22e82f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261162253 → 5493314460 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1274943577&quot; target=&quot;_blank&quot;>1274943577</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>6.61795696517539</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_655a815dd99428b0ba655aee828d41c0.setContent(html_71b8615c5739fd0d6c15f45c7a22e82f);
            
        

        poly_line_cc19d826745b714acf34b81716d8d0aa.bindPopup(popup_655a815dd99428b0ba655aee828d41c0)
        ;

        
    
    
            var poly_line_a28b893612acee231137bbb345e7506e = L.polyline(
                [[41.9045679, -87.6563384], [41.9042439, -87.6560594]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_af8acd6776e855d427aa73c1030fe487 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fb8bf8f7a52ab13125478ea5c45673dc = $(`<div id=&quot;html_fb8bf8f7a52ab13125478ea5c45673dc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261162253 → 5493314480 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1274943577&quot; target=&quot;_blank&quot;>1274943577</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>42.7911765055748</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_af8acd6776e855d427aa73c1030fe487.setContent(html_fb8bf8f7a52ab13125478ea5c45673dc);
            
        

        poly_line_a28b893612acee231137bbb345e7506e.bindPopup(popup_af8acd6776e855d427aa73c1030fe487)
        ;

        
    
    
            var poly_line_5c30ea1c963dc154a3aa04a95d9fc737 = L.polyline(
                [[41.9045679, -87.6563384], [41.904611, -87.6562471], [41.9050525, -87.6553145]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_bf06be3f22e9203a990c62d856fcc76d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_07b063531946b85c64b88934e7364bd1 = $(`<div id=&quot;html_07b063531946b85c64b88934e7364bd1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261162253 → 261162252 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24079431&quot; target=&quot;_blank&quot;>24079431</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>100.41766190484202</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Eastman Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_bf06be3f22e9203a990c62d856fcc76d.setContent(html_07b063531946b85c64b88934e7364bd1);
            
        

        poly_line_5c30ea1c963dc154a3aa04a95d9fc737.bindPopup(popup_bf06be3f22e9203a990c62d856fcc76d)
        ;

        
    
    
            var poly_line_15311154c71cc97fc641302a3674031e = L.polyline(
                [[41.9045679, -87.6563384], [41.9045391, -87.6564211], [41.9045337, -87.6570763], [41.9045, -87.657128]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f27b458e4bf4c8d3f81b3675edb625e0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a98b5a76d7e747ce966ff68ae38ddf6f = $(`<div id=&quot;html_a98b5a76d7e747ce966ff68ae38ddf6f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261162253 → 5493314474 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626344&quot; target=&quot;_blank&quot;>571626344</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>67.47011246299982</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_f27b458e4bf4c8d3f81b3675edb625e0.setContent(html_a98b5a76d7e747ce966ff68ae38ddf6f);
            
        

        poly_line_15311154c71cc97fc641302a3674031e.bindPopup(popup_f27b458e4bf4c8d3f81b3675edb625e0)
        ;

        
    
    
            var poly_line_2de35130ac9770a956ca28962daf0232 = L.polyline(
                [[41.8976238, -87.6575435], [41.8977507, -87.6577386]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_dac7b383677e93b454a5eda8fa2f5ec5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5a542827984db7fc2b5567479baa01b6 = $(`<div id=&quot;html_5a542827984db7fc2b5567479baa01b6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261164740 → 13591152371 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24229910&quot; target=&quot;_blank&quot;>24229910</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.444394025024245</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Milwaukee Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_dac7b383677e93b454a5eda8fa2f5ec5.setContent(html_5a542827984db7fc2b5567479baa01b6);
            
        

        poly_line_2de35130ac9770a956ca28962daf0232.bindPopup(popup_dac7b383677e93b454a5eda8fa2f5ec5)
        ;

        
    
    
            var poly_line_c9d576b1eefaa3657a21477e89dbd67d = L.polyline(
                [[41.8976238, -87.6575435], [41.8976972, -87.6575454]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_84cd2be71629fd9705bd4771d1545387 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ab501f44e519e8e599cf0f4832e5a9d7 = $(`<div id=&quot;html_ab501f44e519e8e599cf0f4832e5a9d7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261164740 → 12289051304 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24442831&quot; target=&quot;_blank&quot;>24442831</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>8.16323398958318</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Racine Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_84cd2be71629fd9705bd4771d1545387.setContent(html_ab501f44e519e8e599cf0f4832e5a9d7);
            
        

        poly_line_c9d576b1eefaa3657a21477e89dbd67d.bindPopup(popup_84cd2be71629fd9705bd4771d1545387)
        ;

        
    
    
            var poly_line_ebfe9fe4b13213d6b512b1651eafefe6 = L.polyline(
                [[41.8976238, -87.6575435], [41.8975294, -87.6575409]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f7b44a728fff2f558eeff3af33cae9ce = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_270ddca39e4a8b11d9df3c8d732aef73 = $(`<div id=&quot;html_270ddca39e4a8b11d9df3c8d732aef73&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261164740 → 12289051302 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24442831&quot; target=&quot;_blank&quot;>24442831</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>10.49902150487507</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Racine Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_f7b44a728fff2f558eeff3af33cae9ce.setContent(html_270ddca39e4a8b11d9df3c8d732aef73);
            
        

        poly_line_ebfe9fe4b13213d6b512b1651eafefe6.bindPopup(popup_f7b44a728fff2f558eeff3af33cae9ce)
        ;

        
    
    
            var poly_line_4b6706dc5c387c095096b680f14a3ab9 = L.polyline(
                [[41.8976238, -87.6575435], [41.8974761, -87.6573171], [41.8970851, -87.6567187], [41.8969842, -87.6565542]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_741dc760bde794a1a94b9cded8376b0e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_515039cde6753023f18555657bebebfa = $(`<div id=&quot;html_515039cde6753023f18555657bebebfa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261164740 → 365026544 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/525995406&quot; target=&quot;_blank&quot;>525995406</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>108.46315423500727</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Milwaukee Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_741dc760bde794a1a94b9cded8376b0e.setContent(html_515039cde6753023f18555657bebebfa);
            
        

        poly_line_4b6706dc5c387c095096b680f14a3ab9.bindPopup(popup_741dc760bde794a1a94b9cded8376b0e)
        ;

        
    
    
            var poly_line_407b20156e918694ec3e3168d3b9ea71 = L.polyline(
                [[41.9002316, -87.6437931], [41.9002962, -87.6438485], [41.900324, -87.6438739], [41.9008101, -87.6442845], [41.9009775, -87.6444272]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_acaad1075e89c827dfa04ec9ddaa955d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_03bfea8c7415b67c0e43575643e45ecb = $(`<div id=&quot;html_03bfea8c7415b67c0e43575643e45ecb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261167714 → 10866693144 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24080413&quot; target=&quot;_blank&quot;>24080413</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>98.1515893830989</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Crosby Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_acaad1075e89c827dfa04ec9ddaa955d.setContent(html_03bfea8c7415b67c0e43575643e45ecb);
            
        

        poly_line_407b20156e918694ec3e3168d3b9ea71.bindPopup(popup_acaad1075e89c827dfa04ec9ddaa955d)
        ;

        
    
    
            var poly_line_b7b5e65c314613aa65e154a4476eed66 = L.polyline(
                [[41.9002316, -87.6437931], [41.9001843, -87.6437533], [41.9001659, -87.6437368], [41.9001493, -87.6437219], [41.8996348, -87.643263]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_85e96dc828e64af45a9c1f493d0d29f1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_248c824c4ec51cc1993e6ac023b336c7 = $(`<div id=&quot;html_248c824c4ec51cc1993e6ac023b336c7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261167714 → 3734093936 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24080413&quot; target=&quot;_blank&quot;>24080413</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>79.5549566135078</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Crosby Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_85e96dc828e64af45a9c1f493d0d29f1.setContent(html_248c824c4ec51cc1993e6ac023b336c7);
            
        

        poly_line_b7b5e65c314613aa65e154a4476eed66.bindPopup(popup_85e96dc828e64af45a9c1f493d0d29f1)
        ;

        
    
    
            var poly_line_b1400cb63b4c0539bba26af41a1b27b4 = L.polyline(
                [[41.9002316, -87.6437931], [41.9002807, -87.6437109], [41.9002972, -87.6436834], [41.9003229, -87.6436403], [41.900381, -87.6434826], [41.9003975, -87.6434098], [41.9004096, -87.6433026], [41.9004116, -87.6432299], [41.9004128, -87.6432043], [41.9004129, -87.6431858], [41.9004145, -87.6430881]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_79a8a822e0ad9f5d87135f2d9bab4ffc = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ebcb78d1cc4d7c90d14ef3fcfc08f5bb = $(`<div id=&quot;html_ebcb78d1cc4d7c90d14ef3fcfc08f5bb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261167714 → 261184866 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/210717483&quot; target=&quot;_blank&quot;>210717483</a>, <a href=&quot;https://www.openstreetmap.org/way/1077476899&quot; target=&quot;_blank&quot;>1077476899</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>63.815244813463615</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Oak Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_79a8a822e0ad9f5d87135f2d9bab4ffc.setContent(html_ebcb78d1cc4d7c90d14ef3fcfc08f5bb);
            
        

        poly_line_b1400cb63b4c0539bba26af41a1b27b4.bindPopup(popup_79a8a822e0ad9f5d87135f2d9bab4ffc)
        ;

        
    
    
            var poly_line_5248d6c16216879c8025bb4543bc6c65 = L.polyline(
                [[41.9002316, -87.6437931], [41.9001791, -87.6438811], [41.9001575, -87.6439172], [41.900073, -87.644079]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_559a0b44a331f58243428e568fba8736 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2735b70f5bbecae8586e023397df6d7a = $(`<div id=&quot;html_2735b70f5bbecae8586e023397df6d7a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261167714 → 353804292 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1077476899&quot; target=&quot;_blank&quot;>1077476899</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>29.526208398160385</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Oak Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_559a0b44a331f58243428e568fba8736.setContent(html_2735b70f5bbecae8586e023397df6d7a);
            
        

        poly_line_5248d6c16216879c8025bb4543bc6c65.bindPopup(popup_559a0b44a331f58243428e568fba8736)
        ;

        
    
    
            var poly_line_ab6bd21124ce2565fdb35dc14b5cec8e = L.polyline(
                [[41.8980212, -87.6600576], [41.8979242, -87.6600007], [41.8971186, -87.6599833]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#f58231&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#f58231&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_bbb7bbb13992d9dc8f7845c215179653 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ab1f3a50e48eafa49e983c6340846fb4 = $(`<div id=&quot;html_ab1f3a50e48eafa49e983c6340846fb4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261177793 → 739990199 (key 0)<br>                 <b>Component</b> 3<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24082319&quot; target=&quot;_blank&quot;>24082319</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>101.35956073539874</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elizabeth Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_bbb7bbb13992d9dc8f7845c215179653.setContent(html_ab1f3a50e48eafa49e983c6340846fb4);
            
        

        poly_line_ab6bd21124ce2565fdb35dc14b5cec8e.bindPopup(popup_bbb7bbb13992d9dc8f7845c215179653)
        ;

        
    
    
            var poly_line_be359326d3116f09557665b855cab1d0 = L.polyline(
                [[41.8989184, -87.6605761], [41.8984782, -87.6603199]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#f58231&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#f58231&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_51015ce08514ed1c8660ad92e0206bc7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d953861aee8dec1263a70d169a26fc80 = $(`<div id=&quot;html_d953861aee8dec1263a70d169a26fc80&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261177794 → 739986153 (key 0)<br>                 <b>Component</b> 3<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24082319&quot; target=&quot;_blank&quot;>24082319</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>53.343655090474</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elizabeth Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_51015ce08514ed1c8660ad92e0206bc7.setContent(html_d953861aee8dec1263a70d169a26fc80);
            
        

        poly_line_be359326d3116f09557665b855cab1d0.bindPopup(popup_51015ce08514ed1c8660ad92e0206bc7)
        ;

        
    
    
            var poly_line_fa3f253fa42613a0139308c69d5079ed = L.polyline(
                [[41.8978398, -87.6429677], [41.8987673, -87.643014]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a823ee538c403272c26a42638ab1b5a3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8213cc8a0aeec4a4e472a047aa4c5df8 = $(`<div id=&quot;html_8213cc8a0aeec4a4e472a047aa4c5df8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261184865 → 4131040103 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/519888259&quot; target=&quot;_blank&quot;>519888259</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>103.20460842668507</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_a823ee538c403272c26a42638ab1b5a3.setContent(html_8213cc8a0aeec4a4e472a047aa4c5df8);
            
        

        poly_line_fa3f253fa42613a0139308c69d5079ed.bindPopup(popup_a823ee538c403272c26a42638ab1b5a3)
        ;

        
    
    
            var poly_line_e2c355e2b438f810f280977a51a051bb = L.polyline(
                [[41.8978398, -87.6429677], [41.897787, -87.6429655], [41.8973157, -87.6429461]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2d988fbe2587a4b5a2278408bf5a71c1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_729c674d3aa6a5ec8056cae42fa14047 = $(`<div id=&quot;html_729c674d3aa6a5ec8056cae42fa14047&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261184865 → 10230482342 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/519888259&quot; target=&quot;_blank&quot;>519888259</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>58.30475881375859</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_2d988fbe2587a4b5a2278408bf5a71c1.setContent(html_729c674d3aa6a5ec8056cae42fa14047);
            
        

        poly_line_e2c355e2b438f810f280977a51a051bb.bindPopup(popup_2d988fbe2587a4b5a2278408bf5a71c1)
        ;

        
    
    
            var poly_line_f329e6acf6a5e24945a36f18feb0258a = L.polyline(
                [[41.8978398, -87.6429677], [41.8978357, -87.6430829], [41.8978493, -87.6431359]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b15ded552b56f714da8ce2897100f735 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8a6c93b6a25c669d8b9c85e793b94665 = $(`<div id=&quot;html_8a6c93b6a25c669d8b9c85e793b94665&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261184865 → 10230482334 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/692898342&quot; target=&quot;_blank&quot;>692898342</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>14.185584763452596</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_b15ded552b56f714da8ce2897100f735.setContent(html_8a6c93b6a25c669d8b9c85e793b94665);
            
        

        poly_line_f329e6acf6a5e24945a36f18feb0258a.bindPopup(popup_b15ded552b56f714da8ce2897100f735)
        ;

        
    
    
            var poly_line_a0e9390622bf382ffcf9a42967ce6077 = L.polyline(
                [[41.9004145, -87.6430881], [41.9004951, -87.6430911], [41.9005238, -87.6430923], [41.9006576, -87.6430975]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_edd1e81b0d42f3179f6da1ded5f1f84d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2c5425742aad8d7e37c9a424e41bc314 = $(`<div id=&quot;html_2c5425742aad8d7e37c9a424e41bc314&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261184866 → 6093478458 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59208011&quot; target=&quot;_blank&quot;>59208011</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>27.042731727368768</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_edd1e81b0d42f3179f6da1ded5f1f84d.setContent(html_2c5425742aad8d7e37c9a424e41bc314);
            
        

        poly_line_a0e9390622bf382ffcf9a42967ce6077.bindPopup(popup_edd1e81b0d42f3179f6da1ded5f1f84d)
        ;

        
    
    
            var poly_line_6185e4c0a4ac68465d980308d1b0c544 = L.polyline(
                [[41.9004145, -87.6430881], [41.900416, -87.642992], [41.9004161, -87.6429886], [41.9004166, -87.6429564], [41.9004246, -87.642465]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4a3d6a7d229ebe37e1ef527df098984f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8f52128dbbac8678c4eb61e73cd19559 = $(`<div id=&quot;html_8f52128dbbac8678c4eb61e73cd19559&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261184866 → 261108924 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/210717483&quot; target=&quot;_blank&quot;>210717483</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>51.582051027589415</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Oak Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_4a3d6a7d229ebe37e1ef527df098984f.setContent(html_8f52128dbbac8678c4eb61e73cd19559);
            
        

        poly_line_6185e4c0a4ac68465d980308d1b0c544.bindPopup(popup_4a3d6a7d229ebe37e1ef527df098984f)
        ;

        
    
    
            var poly_line_d5f786fc8c79ea4b3d31774069c20772 = L.polyline(
                [[41.9004145, -87.6430881], [41.9004129, -87.6431858], [41.9004128, -87.6432043], [41.9004116, -87.6432299], [41.9004096, -87.6433026], [41.9003975, -87.6434098], [41.900381, -87.6434826], [41.9003229, -87.6436403], [41.9002972, -87.6436834], [41.9002807, -87.6437109], [41.9002316, -87.6437931]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_21b85fe9cd24a51918e157a1aa80826b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f2af12dd35a9349470d9ce2937dfcef3 = $(`<div id=&quot;html_f2af12dd35a9349470d9ce2937dfcef3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261184866 → 261167714 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1077476899&quot; target=&quot;_blank&quot;>1077476899</a>, <a href=&quot;https://www.openstreetmap.org/way/210717483&quot; target=&quot;_blank&quot;>210717483</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>63.81524481346361</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Oak Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_21b85fe9cd24a51918e157a1aa80826b.setContent(html_f2af12dd35a9349470d9ce2937dfcef3);
            
        

        poly_line_d5f786fc8c79ea4b3d31774069c20772.bindPopup(popup_21b85fe9cd24a51918e157a1aa80826b)
        ;

        
    
    
            var poly_line_5421e7c07fcf3e7e504eb70856d4c10b = L.polyline(
                [[41.9004145, -87.6430881], [41.900353, -87.6430853], [41.9003316, -87.6430843], [41.8995994, -87.6430514], [41.8993793, -87.6430415], [41.8987673, -87.643014]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e774e5ff3d7f772c6899ebe33c1cc447 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4652eedebcb1da9e3f84bf31c7f67e57 = $(`<div id=&quot;html_4652eedebcb1da9e3f84bf31c7f67e57&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261184866 → 4131040103 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/519888259&quot; target=&quot;_blank&quot;>519888259</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>183.26318987488617</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_e774e5ff3d7f772c6899ebe33c1cc447.setContent(html_4652eedebcb1da9e3f84bf31c7f67e57);
            
        

        poly_line_5421e7c07fcf3e7e504eb70856d4c10b.bindPopup(popup_e774e5ff3d7f772c6899ebe33c1cc447)
        ;

        
    
    
            var poly_line_edc8d7f4aa0fb9c66b4a5fd120a9b517 = L.polyline(
                [[41.9014743, -87.6431292], [41.9014754, -87.6430323], [41.9014757, -87.6430068], [41.9014818, -87.6426472]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ae906fff50568cd3c534b25cf980c791 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_661f21b3445421316cf0632f064239a9 = $(`<div id=&quot;html_661f21b3445421316cf0632f064239a9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261184867 → 9969789738 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/30954124&quot; target=&quot;_blank&quot;>30954124</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>39.90014584363453</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Hobbie Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_ae906fff50568cd3c534b25cf980c791.setContent(html_661f21b3445421316cf0632f064239a9);
            
        

        poly_line_edc8d7f4aa0fb9c66b4a5fd120a9b517.bindPopup(popup_ae906fff50568cd3c534b25cf980c791)
        ;

        
    
    
            var poly_line_f25f395588b95822e2f4a6df202611db = L.polyline(
                [[41.9014743, -87.6431292], [41.9014724, -87.64324], [41.9014715, -87.6432709], [41.9014681, -87.6435813]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_807dbfe76a749b7de0c2e2c39d413afb = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_63a640335ca1aee87240fcbb9389af29 = $(`<div id=&quot;html_63a640335ca1aee87240fcbb9389af29&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261184867 → 10866693147 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/30954124&quot; target=&quot;_blank&quot;>30954124</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>37.423817802395426</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Hobbie Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_807dbfe76a749b7de0c2e2c39d413afb.setContent(html_63a640335ca1aee87240fcbb9389af29);
            
        

        poly_line_f25f395588b95822e2f4a6df202611db.bindPopup(popup_807dbfe76a749b7de0c2e2c39d413afb)
        ;

        
    
    
            var poly_line_f8020756257a57df0277e5b6a291cfce = L.polyline(
                [[41.9014743, -87.6431292], [41.9015527, -87.6431323], [41.9015866, -87.6431336], [41.9019119, -87.6431463]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0960b0fd177ba2366afb457c327c946d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3624a3d5bb3418e759c5441e7cd4baf1 = $(`<div id=&quot;html_3624a3d5bb3418e759c5441e7cd4baf1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261184867 → 9969789724 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59208011&quot; target=&quot;_blank&quot;>59208011</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>48.67954592398934</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_0960b0fd177ba2366afb457c327c946d.setContent(html_3624a3d5bb3418e759c5441e7cd4baf1);
            
        

        poly_line_f8020756257a57df0277e5b6a291cfce.bindPopup(popup_0960b0fd177ba2366afb457c327c946d)
        ;

        
    
    
            var poly_line_b8810dd134d7dc18be915d91d603e24e = L.polyline(
                [[41.9014743, -87.6431292], [41.901398, -87.6431256], [41.901373, -87.6431253], [41.9013323, -87.6431237]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_397c6d48d7f3bb2a6a173f376901dd5f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6be26616184f254a67d091630216c512 = $(`<div id=&quot;html_6be26616184f254a67d091630216c512&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261184867 → 10866693152 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59208011&quot; target=&quot;_blank&quot;>59208011</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>15.796979515572616</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_397c6d48d7f3bb2a6a173f376901dd5f.setContent(html_6be26616184f254a67d091630216c512);
            
        

        poly_line_b8810dd134d7dc18be915d91d603e24e.bindPopup(popup_397c6d48d7f3bb2a6a173f376901dd5f)
        ;

        
    
    
            var poly_line_5444e7cfa36a45e61017105820ea25a5 = L.polyline(
                [[41.9026584, -87.6431752], [41.9029267, -87.6431856]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_93ebc13007d14ed275aa5bb4c93d6271 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e650f0e69e616fed41f39e1cbc085572 = $(`<div id=&quot;html_e650f0e69e616fed41f39e1cbc085572&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261184868 → 5149934486 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59208011&quot; target=&quot;_blank&quot;>59208011</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>29.84605413581867</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_93ebc13007d14ed275aa5bb4c93d6271.setContent(html_e650f0e69e616fed41f39e1cbc085572);
            
        

        poly_line_5444e7cfa36a45e61017105820ea25a5.bindPopup(popup_93ebc13007d14ed275aa5bb4c93d6271)
        ;

        
    
    
            var poly_line_1d3e81c4f3a1fc85d76b178dff5d68b4 = L.polyline(
                [[41.9026584, -87.6431752], [41.9024714, -87.643168]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c567caf00137bf69feda0f02afeea05c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a321eb96d4c398cf5563ea019f1e66ac = $(`<div id=&quot;html_a321eb96d4c398cf5563ea019f1e66ac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261184868 → 3408107725 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59208011&quot; target=&quot;_blank&quot;>59208011</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.802016853578277</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_c567caf00137bf69feda0f02afeea05c.setContent(html_a321eb96d4c398cf5563ea019f1e66ac);
            
        

        poly_line_1d3e81c4f3a1fc85d76b178dff5d68b4.bindPopup(popup_c567caf00137bf69feda0f02afeea05c)
        ;

        
    
    
            var poly_line_1e1dd2f3570a9bf3f2568d312fd38107 = L.polyline(
                [[41.9050612, -87.6432596], [41.9048387, -87.6432523]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0d2745bb26b4f4313253655ffb7faa5b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2301297c94f2d24ba5e87dfc65a63bd2 = $(`<div id=&quot;html_2301297c94f2d24ba5e87dfc65a63bd2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261184870 → 262368672 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/519888263&quot; target=&quot;_blank&quot;>519888263</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>24.748280902707737</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_0d2745bb26b4f4313253655ffb7faa5b.setContent(html_2301297c94f2d24ba5e87dfc65a63bd2);
            
        

        poly_line_1e1dd2f3570a9bf3f2568d312fd38107.bindPopup(popup_0d2745bb26b4f4313253655ffb7faa5b)
        ;

        
    
    
            var poly_line_604492318994ec5c18937f0fcf997478 = L.polyline(
                [[41.9050612, -87.6432596], [41.9050601, -87.6433482], [41.9050515, -87.6440131]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7f34c9101fe705bb709b3e0b2af80683 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fa5709bb12f26f7289ed6a4fd1348166 = $(`<div id=&quot;html_fa5709bb12f26f7289ed6a4fd1348166&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261184870 → 10264704015 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59586637&quot; target=&quot;_blank&quot;>59586637</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>62.36690253335998</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Scott Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_7f34c9101fe705bb709b3e0b2af80683.setContent(html_fa5709bb12f26f7289ed6a4fd1348166);
            
        

        poly_line_604492318994ec5c18937f0fcf997478.bindPopup(popup_7f34c9101fe705bb709b3e0b2af80683)
        ;

        
    
    
            var poly_line_949bc52e0d915bd8b36c1f5ae7cebc08 = L.polyline(
                [[41.9050612, -87.6432596], [41.9063158, -87.6432919], [41.9064567, -87.6432955]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_dc4e4a07d5f3da345f1ddb7da3295af5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_71918c0d98a5d2cb94c71912d7fff2bd = $(`<div id=&quot;html_71918c0d98a5d2cb94c71912d7fff2bd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261184870 → 102708201 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/519888263&quot; target=&quot;_blank&quot;>519888263</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>155.20117794346328</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_dc4e4a07d5f3da345f1ddb7da3295af5.setContent(html_71918c0d98a5d2cb94c71912d7fff2bd);
            
        

        poly_line_949bc52e0d915bd8b36c1f5ae7cebc08.bindPopup(popup_dc4e4a07d5f3da345f1ddb7da3295af5)
        ;

        
    
    
            var poly_line_ad15f03b41df6f78c1f81f5d197e36a3 = L.polyline(
                [[41.9091747, -87.6433721], [41.909176, -87.6432777], [41.9091764, -87.6432499], [41.9091823, -87.6427974]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c2f1963fad90232e4c621866747ddb40 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7bddd4f24ea0701eeba040fe80f6d84e = $(`<div id=&quot;html_7bddd4f24ea0701eeba040fe80f6d84e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261184871 → 2204462549 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24085266&quot; target=&quot;_blank&quot;>24085266</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>47.56502369947977</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Blackhawk Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_c2f1963fad90232e4c621866747ddb40.setContent(html_7bddd4f24ea0701eeba040fe80f6d84e);
            
        

        poly_line_ad15f03b41df6f78c1f81f5d197e36a3.bindPopup(popup_c2f1963fad90232e4c621866747ddb40)
        ;

        
    
    
            var poly_line_4c858ec152499f13ce403759b2fed72e = L.polyline(
                [[41.9091747, -87.6433721], [41.909265, -87.6433756], [41.9093, -87.643377], [41.9102927, -87.6434164], [41.9105972, -87.6434285]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6497ab745d9a34dbee8ce1e940507e5e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e157e09eacffdae44f40e61bd494870e = $(`<div id=&quot;html_e157e09eacffdae44f40e61bd494870e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261184871 → 2204462596 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1311091786&quot; target=&quot;_blank&quot;>1311091786</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>158.24384923312635</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_6497ab745d9a34dbee8ce1e940507e5e.setContent(html_e157e09eacffdae44f40e61bd494870e);
            
        

        poly_line_4c858ec152499f13ce403759b2fed72e.bindPopup(popup_6497ab745d9a34dbee8ce1e940507e5e)
        ;

        
    
    
            var poly_line_e9b379eed33e0f21264b00fbcab41d95 = L.polyline(
                [[41.9091747, -87.6433721], [41.9091111, -87.6433703], [41.9090903, -87.6433697], [41.907559, -87.6433266]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a7bd7b7193358ac1584211d4adee6ee6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_235e92f45f6172f89d0ea31a375260a2 = $(`<div id=&quot;html_235e92f45f6172f89d0ea31a375260a2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261184871 → 2204462532 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1311091786&quot; target=&quot;_blank&quot;>1311091786</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>179.6973488173476</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_a7bd7b7193358ac1584211d4adee6ee6.setContent(html_235e92f45f6172f89d0ea31a375260a2);
            
        

        poly_line_e9b379eed33e0f21264b00fbcab41d95.bindPopup(popup_a7bd7b7193358ac1584211d4adee6ee6)
        ;

        
    
    
            var poly_line_7f96910eb94a0a8992a8fbcc7967b598 = L.polyline(
                [[41.9098513, -87.649478], [41.909335, -87.6494643]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2ba4fdec5bb72b87f8b5cce8a1a8b9f8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5362d1b30d5be1478322a41a1a8a04f5 = $(`<div id=&quot;html_5362d1b30d5be1478322a41a1a8a04f5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261185404 → 5493322738 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24103945&quot; target=&quot;_blank&quot;>24103945</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>57.421214334717966</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Dayton Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_2ba4fdec5bb72b87f8b5cce8a1a8b9f8.setContent(html_5362d1b30d5be1478322a41a1a8a04f5);
            
        

        poly_line_7f96910eb94a0a8992a8fbcc7967b598.bindPopup(popup_2ba4fdec5bb72b87f8b5cce8a1a8b9f8)
        ;

        
    
    
            var poly_line_9e994433d96a9f1d996ad3cb9e2527fa = L.polyline(
                [[41.9098513, -87.649478], [41.9098527, -87.6493779], [41.9098584, -87.6489871]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_71c34cb834d0f05899204a6d02833fdd = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0443060b88e4321eeee7853dc96cfe27 = $(`<div id=&quot;html_0443060b88e4321eeee7853dc96cfe27&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261185404 → 2401648345 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24083758&quot; target=&quot;_blank&quot;>24083758</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>40.63014434835975</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Weed Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_71c34cb834d0f05899204a6d02833fdd.setContent(html_0443060b88e4321eeee7853dc96cfe27);
            
        

        poly_line_9e994433d96a9f1d996ad3cb9e2527fa.bindPopup(popup_71c34cb834d0f05899204a6d02833fdd)
        ;

        
    
    
            var poly_line_5cf77372ac480fb6331b35b3b8527f61 = L.polyline(
                [[41.9102025, -87.647121], [41.9098956, -87.647507]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_047000c9b3bdb7e9457d87ca69fbe87c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0dc06488c80b466d70ab6eab477cb134 = $(`<div id=&quot;html_0dc06488c80b466d70ab6eab477cb134&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261185409 → 5235039325 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1126560631&quot; target=&quot;_blank&quot;>1126560631</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>46.74234055316537</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Weed Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_047000c9b3bdb7e9457d87ca69fbe87c.setContent(html_0dc06488c80b466d70ab6eab477cb134);
            
        

        poly_line_5cf77372ac480fb6331b35b3b8527f61.bindPopup(popup_047000c9b3bdb7e9457d87ca69fbe87c)
        ;

        
    
    
            var poly_line_a425b9998d17216f98bdbb75c46b9bcd = L.polyline(
                [[41.9098248, -87.6510854], [41.9102411, -87.6510991]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_593eeb2040a9c17da72744eec18ddea4 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9fe9c820b9afbb23cf13029c323d05c2 = $(`<div id=&quot;html_9fe9c820b9afbb23cf13029c323d05c2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261185411 → 5493322751 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24111763&quot; target=&quot;_blank&quot;>24111763</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>46.304393634756266</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Fremont Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_593eeb2040a9c17da72744eec18ddea4.setContent(html_9fe9c820b9afbb23cf13029c323d05c2);
            
        

        poly_line_a425b9998d17216f98bdbb75c46b9bcd.bindPopup(popup_593eeb2040a9c17da72744eec18ddea4)
        ;

        
    
    
            var poly_line_29244a33861753560439547db6fda397 = L.polyline(
                [[41.9098248, -87.6510854], [41.9093588, -87.6510702]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3dfa00e898bda5e84d9a1c4b6b30914c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_34e5b444f40d045b41dbf604b040fad8 = $(`<div id=&quot;html_34e5b444f40d045b41dbf604b040fad8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261185411 → 5493322739 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24111763&quot; target=&quot;_blank&quot;>24111763</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>51.83217314006734</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Fremont Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_3dfa00e898bda5e84d9a1c4b6b30914c.setContent(html_34e5b444f40d045b41dbf604b040fad8);
            
        

        poly_line_29244a33861753560439547db6fda397.bindPopup(popup_3dfa00e898bda5e84d9a1c4b6b30914c)
        ;

        
    
    
            var poly_line_352419b1c1ab4701c39402ad8d64a962 = L.polyline(
                [[41.9098248, -87.6510854], [41.9098227, -87.6511894], [41.9098194, -87.6513543]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_41e5aee6a08014f82f9c76a5a13b5426 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_df4f4769d5ecda8138514169fae16106 = $(`<div id=&quot;html_df4f4769d5ecda8138514169fae16106&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261185411 → 5493322753 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24083761&quot; target=&quot;_blank&quot;>24083761</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.25985839270622</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Weed Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_41e5aee6a08014f82f9c76a5a13b5426.setContent(html_df4f4769d5ecda8138514169fae16106);
            
        

        poly_line_352419b1c1ab4701c39402ad8d64a962.bindPopup(popup_41e5aee6a08014f82f9c76a5a13b5426)
        ;

        
    
    
            var poly_line_79be5f413beb3240c2efb5c5c8b4e834 = L.polyline(
                [[41.8983833, -87.6565954], [41.8985142, -87.6566016]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f5dd99d0eff5e9b301c8e4b74bef65ea = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_67454ac559dd79fbc65d9e964595e8ad = $(`<div id=&quot;html_67454ac559dd79fbc65d9e964595e8ad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261185599 → 9687430176 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1124448281&quot; target=&quot;_blank&quot;>1124448281</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>14.564479095370286</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_f5dd99d0eff5e9b301c8e4b74bef65ea.setContent(html_67454ac559dd79fbc65d9e964595e8ad);
            
        

        poly_line_79be5f413beb3240c2efb5c5c8b4e834.bindPopup(popup_f5dd99d0eff5e9b301c8e4b74bef65ea)
        ;

        
    
    
            var poly_line_62ee61b465bec640c69ac1f148b3ab19 = L.polyline(
                [[41.8983833, -87.6565954], [41.8981844, -87.6565884]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_bf976f174b49a10736118e61ffc6ffcd = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_61a23322f23e944d24768c2149d96c7b = $(`<div id=&quot;html_61a23322f23e944d24768c2149d96c7b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261185599 → 5907549148 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1386550109&quot; target=&quot;_blank&quot;>1386550109</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.124289243132814</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_bf976f174b49a10736118e61ffc6ffcd.setContent(html_61a23322f23e944d24768c2149d96c7b);
            
        

        poly_line_62ee61b465bec640c69ac1f148b3ab19.bindPopup(popup_bf976f174b49a10736118e61ffc6ffcd)
        ;

        
    
    
            var poly_line_d7b062cbcd22dd495a301fc01e8f6805 = L.polyline(
                [[41.8983833, -87.6565954], [41.8984423, -87.6565407], [41.8985172, -87.6565397], [41.8987355, -87.6565422], [41.8988148, -87.6565443]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f44900d6e42f4dc970d0a84e83eade00 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_58f396d8a3daac7fcf091c4a49d9800b = $(`<div id=&quot;html_58f396d8a3daac7fcf091c4a49d9800b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261185599 → 12187280168 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820053&quot; target=&quot;_blank&quot;>1316820053</a>, <a href=&quot;https://www.openstreetmap.org/way/1316820054&quot; target=&quot;_blank&quot;>1316820054</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>49.39416319339396</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>Elston Avenue Bikeway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_f44900d6e42f4dc970d0a84e83eade00.setContent(html_58f396d8a3daac7fcf091c4a49d9800b);
            
        

        poly_line_d7b062cbcd22dd495a301fc01e8f6805.bindPopup(popup_f44900d6e42f4dc970d0a84e83eade00)
        ;

        
    
    
            var poly_line_9e83b52e741d3284a47b6ecd48c7001f = L.polyline(
                [[41.8998866, -87.6566342], [41.8998489, -87.6565694]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6649eee6a64994562aedb0c477dc08a4 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_29543dc906c88351a69df02f62e0f1fb = $(`<div id=&quot;html_29543dc906c88351a69df02f62e0f1fb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261185602 → 11967979302 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/567586953&quot; target=&quot;_blank&quot;>567586953</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>6.807070631036054</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Augusta Boulevard</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_6649eee6a64994562aedb0c477dc08a4.setContent(html_29543dc906c88351a69df02f62e0f1fb);
            
        

        poly_line_9e83b52e741d3284a47b6ecd48c7001f.bindPopup(popup_6649eee6a64994562aedb0c477dc08a4)
        ;

        
    
    
            var poly_line_f478a0b813e8b7584c7589ed0322ea60 = L.polyline(
                [[41.8998866, -87.6566342], [41.8998847, -87.6567283]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_169f62d016f79af06b48927537d2f8a2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7eae8e460105e7efe78eac5ac625da47 = $(`<div id=&quot;html_7eae8e460105e7efe78eac5ac625da47&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261185602 → 11967979323 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/569914535&quot; target=&quot;_blank&quot;>569914535</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.790951173164582</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Augusta Boulevard</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_169f62d016f79af06b48927537d2f8a2.setContent(html_7eae8e460105e7efe78eac5ac625da47);
            
        

        poly_line_f478a0b813e8b7584c7589ed0322ea60.bindPopup(popup_169f62d016f79af06b48927537d2f8a2)
        ;

        
    
    
            var poly_line_c3e845d9046ba577aec02e74556e7f93 = L.polyline(
                [[41.8998866, -87.6566342], [41.9006008, -87.656657], [41.9006766, -87.6566601]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_95e06f5cddbccf88b89a73325ee1178d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_600a7375390f9da74029fe72a2b72560 = $(`<div id=&quot;html_600a7375390f9da74029fe72a2b72560&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261185602 → 261119878 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59196050&quot; target=&quot;_blank&quot;>59196050</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>87.87043574244412</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_95e06f5cddbccf88b89a73325ee1178d.setContent(html_600a7375390f9da74029fe72a2b72560);
            
        

        poly_line_c3e845d9046ba577aec02e74556e7f93.bindPopup(popup_95e06f5cddbccf88b89a73325ee1178d)
        ;

        
    
    
            var poly_line_2b73a8f73aa63e67e33a4d5dac80c4a7 = L.polyline(
                [[41.8998866, -87.6566342], [41.8998009, -87.6566331], [41.8993207, -87.6566268]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_344e6d651244670fb9257eedd00f230e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f7ddbf5c3aad3b2d8ce451783d7a2c02 = $(`<div id=&quot;html_f7ddbf5c3aad3b2d8ce451783d7a2c02&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261185602 → 10255086915 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1485859705&quot; target=&quot;_blank&quot;>1485859705</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>62.92827852570199</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_344e6d651244670fb9257eedd00f230e.setContent(html_f7ddbf5c3aad3b2d8ce451783d7a2c02);
            
        

        poly_line_2b73a8f73aa63e67e33a4d5dac80c4a7.bindPopup(popup_344e6d651244670fb9257eedd00f230e)
        ;

        
    
    
            var poly_line_fc3bb2ad746a98d36748fb937157f25a = L.polyline(
                [[41.9021815, -87.6618108], [41.9019368, -87.6617988], [41.9019389, -87.6617027], [41.9018907, -87.6617014], [41.901759, -87.6616986], [41.9015647, -87.6616923]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_95cd304dcaaf470a4c35a3b49515891d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ff9c32ab5e1e9e33e3bef21015f0aa8e = $(`<div id=&quot;html_ff9c32ab5e1e9e33e3bef21015f0aa8e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261186106 → 365024908 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24103249&quot; target=&quot;_blank&quot;>24103249</a>, <a href=&quot;https://www.openstreetmap.org/way/24083875&quot; target=&quot;_blank&quot;>24083875</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>76.8027449320204</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_95cd304dcaaf470a4c35a3b49515891d.setContent(html_ff9c32ab5e1e9e33e3bef21015f0aa8e);
            
        

        poly_line_fc3bb2ad746a98d36748fb937157f25a.bindPopup(popup_95cd304dcaaf470a4c35a3b49515891d)
        ;

        
    
    
            var poly_line_7e87cb3705c82990dbe50ae6272a8903 = L.polyline(
                [[41.9071439, -87.6566169], [41.9071461, -87.6565377]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7d0496c31ff00574784aaac2bd1f9dc7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_149854c36740f5cf5567cebd02c4ccc7 = $(`<div id=&quot;html_149854c36740f5cf5567cebd02c4ccc7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261193484 → 600507966 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24085261&quot; target=&quot;_blank&quot;>24085261</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>6.558721982898054</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Blackhawk Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_7d0496c31ff00574784aaac2bd1f9dc7.setContent(html_149854c36740f5cf5567cebd02c4ccc7);
            
        

        poly_line_7e87cb3705c82990dbe50ae6272a8903.bindPopup(popup_7d0496c31ff00574784aaac2bd1f9dc7)
        ;

        
    
    
            var poly_line_efb88f2c22ab8f884e1e3eab8999fb50 = L.polyline(
                [[41.9071439, -87.6566169], [41.9071416, -87.6566755]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_48394d609d8cdfcf01023ad7ebd0694a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f2a4bf9610014c7439e3c271f1b0b588 = $(`<div id=&quot;html_f2a4bf9610014c7439e3c271f1b0b588&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261193484 → 600507960 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/372671682&quot; target=&quot;_blank&quot;>372671682</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>4.856154414095208</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Blackhawk Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_48394d609d8cdfcf01023ad7ebd0694a.setContent(html_f2a4bf9610014c7439e3c271f1b0b588);
            
        

        poly_line_efb88f2c22ab8f884e1e3eab8999fb50.bindPopup(popup_48394d609d8cdfcf01023ad7ebd0694a)
        ;

        
    
    
            var poly_line_902a862c50b9ebe1f02db723afb4c98f = L.polyline(
                [[41.9071439, -87.6566169], [41.9070696, -87.6566146], [41.9064799, -87.6566024]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ec1c278da62d760a0be3f024d824b2f0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_dffa0af7b7d327ac5157b2292e18f14e = $(`<div id=&quot;html_dffa0af7b7d327ac5157b2292e18f14e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261193484 → 5493314437 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/683189253&quot; target=&quot;_blank&quot;>683189253</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>73.84349983275658</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_ec1c278da62d760a0be3f024d824b2f0.setContent(html_dffa0af7b7d327ac5157b2292e18f14e);
            
        

        poly_line_902a862c50b9ebe1f02db723afb4c98f.bindPopup(popup_ec1c278da62d760a0be3f024d824b2f0)
        ;

        
    
    
            var poly_line_0b72159fb335f5ef0539827db65b3bcb = L.polyline(
                [[41.9085599, -87.6494436], [41.9085587, -87.6495463], [41.9085534, -87.6499788]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6e8deae00dcb54acbb68f27c4fb04bd0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_eb81593a2fe90948766e264fc4b27f54 = $(`<div id=&quot;html_eb81593a2fe90948766e264fc4b27f54&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261193487 → 10748232282 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24085262&quot; target=&quot;_blank&quot;>24085262</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>44.295140798045495</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Blackhawk Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_6e8deae00dcb54acbb68f27c4fb04bd0.setContent(html_eb81593a2fe90948766e264fc4b27f54);
            
        

        poly_line_0b72159fb335f5ef0539827db65b3bcb.bindPopup(popup_6e8deae00dcb54acbb68f27c4fb04bd0)
        ;

        
    
    
            var poly_line_03faa6170c6c74870f0e24b0ba01c976 = L.polyline(
                [[41.9085599, -87.6494436], [41.9085612, -87.6493334], [41.9085674, -87.6488221]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f3e1da82d5e3ae4b85e20af335879776 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d87f9c9c0dec8047e4b539cecd97afd1 = $(`<div id=&quot;html_d87f9c9c0dec8047e4b539cecd97afd1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261193487 → 2401648323 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24085262&quot; target=&quot;_blank&quot;>24085262</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>51.43755526061395</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Blackhawk Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_f3e1da82d5e3ae4b85e20af335879776.setContent(html_d87f9c9c0dec8047e4b539cecd97afd1);
            
        

        poly_line_03faa6170c6c74870f0e24b0ba01c976.bindPopup(popup_f3e1da82d5e3ae4b85e20af335879776)
        ;

        
    
    
            var poly_line_28a259f4e97c0d611538d414050fc610 = L.polyline(
                [[41.9085599, -87.6494436], [41.9086361, -87.6494456], [41.908816, -87.6494504]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9951ce43d4c013b8e346dd81506a19af = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e62c30beba1068186caa6d4b9b216122 = $(`<div id=&quot;html_e62c30beba1068186caa6d4b9b216122&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261193487 → 5493322730 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24103945&quot; target=&quot;_blank&quot;>24103945</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>28.48262045887374</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Dayton Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_9951ce43d4c013b8e346dd81506a19af.setContent(html_e62c30beba1068186caa6d4b9b216122);
            
        

        poly_line_28a259f4e97c0d611538d414050fc610.bindPopup(popup_9951ce43d4c013b8e346dd81506a19af)
        ;

        
    
    
            var poly_line_12052fec39ca84b1975aae7f54bbabfb = L.polyline(
                [[41.9085599, -87.6494436], [41.9084803, -87.6494415], [41.9077867, -87.6494227]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7f4619bb5ade424d101ef3d4e585e322 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fa0d5f6ed2b8d3724c89fd7c996eb953 = $(`<div id=&quot;html_fa0d5f6ed2b8d3724c89fd7c996eb953&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261193487 → 7536224405 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24103945&quot; target=&quot;_blank&quot;>24103945</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>85.99343433561073</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Dayton Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_7f4619bb5ade424d101ef3d4e585e322.setContent(html_fa0d5f6ed2b8d3724c89fd7c996eb953);
            
        

        poly_line_12052fec39ca84b1975aae7f54bbabfb.bindPopup(popup_7f4619bb5ade424d101ef3d4e585e322)
        ;

        
    
    
            var poly_line_79da4bf5e1abdaecf289d6e2ec03deed = L.polyline(
                [[41.9085405, -87.6510434], [41.9085418, -87.6509393], [41.9085484, -87.6503895]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7dc30850bf6dc68fc9acff886f8158b2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_067eabacdf266a54b22f34c9ee3a256b = $(`<div id=&quot;html_067eabacdf266a54b22f34c9ee3a256b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261193488 → 10748232280 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24085262&quot; target=&quot;_blank&quot;>24085262</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>54.119127999002714</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Blackhawk Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_7dc30850bf6dc68fc9acff886f8158b2.setContent(html_067eabacdf266a54b22f34c9ee3a256b);
            
        

        poly_line_79da4bf5e1abdaecf289d6e2ec03deed.bindPopup(popup_7dc30850bf6dc68fc9acff886f8158b2)
        ;

        
    
    
            var poly_line_685094c4ea198b3ae5964920b4ad1540 = L.polyline(
                [[41.9085405, -87.6510434], [41.9086147, -87.6510458], [41.9091203, -87.6510624]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_80fa8d0f7c245fa6ca7aea002b9b8fb7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6f1ba8f932c6f6027ae61acad5df4f4a = $(`<div id=&quot;html_6f1ba8f932c6f6027ae61acad5df4f4a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261193488 → 2204462579 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24111763&quot; target=&quot;_blank&quot;>24111763</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>64.49007945443316</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Fremont Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_80fa8d0f7c245fa6ca7aea002b9b8fb7.setContent(html_6f1ba8f932c6f6027ae61acad5df4f4a);
            
        

        poly_line_685094c4ea198b3ae5964920b4ad1540.bindPopup(popup_80fa8d0f7c245fa6ca7aea002b9b8fb7)
        ;

        
    
    
            var poly_line_456206c1e70995b7463b3d7546ef6470 = L.polyline(
                [[41.9085405, -87.6510434], [41.9085086, -87.6511133], [41.9084272, -87.6512917]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a384d42d265fe12a0d874c29b19bc075 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_751bf5d242ddd77f75b2461ce138024e = $(`<div id=&quot;html_751bf5d242ddd77f75b2461ce138024e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261193488 → 2204462590 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1413118080&quot; target=&quot;_blank&quot;>1413118080</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>24.102286718047225</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Blackhawk Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_a384d42d265fe12a0d874c29b19bc075.setContent(html_751bf5d242ddd77f75b2461ce138024e);
            
        

        poly_line_456206c1e70995b7463b3d7546ef6470.bindPopup(popup_a384d42d265fe12a0d874c29b19bc075)
        ;

        
    
    
            var poly_line_ddd8873b4991c3bbf3f79ba0444f167e = L.polyline(
                [[41.9078544, -87.6525476], [41.907891, -87.6524673]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3c54756bcd839acc19ac2b4c757984b3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_520b0e47039db12a7380eb504dd61767 = $(`<div id=&quot;html_520b0e47039db12a7380eb504dd61767&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261193490 → 12185013447 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1413118080&quot; target=&quot;_blank&quot;>1413118080</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.792323422692829</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Blackhawk Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_3c54756bcd839acc19ac2b4c757984b3.setContent(html_520b0e47039db12a7380eb504dd61767);
            
        

        poly_line_ddd8873b4991c3bbf3f79ba0444f167e.bindPopup(popup_3c54756bcd839acc19ac2b4c757984b3)
        ;

        
    
    
            var poly_line_7dd064e0e5998c214a7095cfa2a759ba = L.polyline(
                [[41.9071324, -87.6585096], [41.9071281, -87.6587738]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_16f6daf7279cfcb566276cce4e5416a0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f1e72bd8bb4ee8790be799d26f7ce66f = $(`<div id=&quot;html_f1e72bd8bb4ee8790be799d26f7ce66f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261193494 → 7505359102 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24085264&quot; target=&quot;_blank&quot;>24085264</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.868977775143325</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Blackhawk Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_16f6daf7279cfcb566276cce4e5416a0.setContent(html_f1e72bd8bb4ee8790be799d26f7ce66f);
            
        

        poly_line_7dd064e0e5998c214a7095cfa2a759ba.bindPopup(popup_16f6daf7279cfcb566276cce4e5416a0)
        ;

        
    
    
            var poly_line_fbe0a40b35a0743dab6c8b53001c037e = L.polyline(
                [[41.9014947, -87.6617817], [41.9014722, -87.661777], [41.901452, -87.661763], [41.9014361, -87.6617411], [41.9014262, -87.6617135], [41.9014234, -87.6616832], [41.9014279, -87.6616532], [41.9014392, -87.6616266], [41.9014562, -87.6616063]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1083538e9ed7fa6aeb5ee3f21a8d959e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5acaaf73061782884c9fc33136be8cac = $(`<div id=&quot;html_5acaaf73061782884c9fc33136be8cac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261202233 → 12156678399 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59648583&quot; target=&quot;_blank&quot;>59648583</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>junction</td><td style='padding:2px 6px;'>roundabout</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.250507269273218</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_1083538e9ed7fa6aeb5ee3f21a8d959e.setContent(html_5acaaf73061782884c9fc33136be8cac);
            
        

        poly_line_fbe0a40b35a0743dab6c8b53001c037e.bindPopup(popup_1083538e9ed7fa6aeb5ee3f21a8d959e)
        ;

        
    
    
            var poly_line_6bb88c654534cbc69ab61d571f972e3f = L.polyline(
                [[41.9045205, -87.6533404], [41.9058514, -87.6544371]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3b3237d8582728c4f168ff1fdefde1be = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_186eb9b5b6738485354ecbb561c2288d = $(`<div id=&quot;html_186eb9b5b6738485354ecbb561c2288d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261207496 → 5493314534 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24088116&quot; target=&quot;_blank&quot;>24088116</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>173.60363162254566</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Hickory Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_3b3237d8582728c4f168ff1fdefde1be.setContent(html_186eb9b5b6738485354ecbb561c2288d);
            
        

        poly_line_6bb88c654534cbc69ab61d571f972e3f.bindPopup(popup_3b3237d8582728c4f168ff1fdefde1be)
        ;

        
    
    
            var poly_line_9146f3555f0a2acc097609465cd37566 = L.polyline(
                [[41.9045205, -87.6533404], [41.9040655, -87.6529654]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a77fc5a9e9c0892daa1919804f55a36a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_242337f0c89111a587b9847605a3e11b = $(`<div id=&quot;html_242337f0c89111a587b9847605a3e11b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261207496 → 5493313715 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24088116&quot; target=&quot;_blank&quot;>24088116</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>59.353674421379225</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Hickory Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_a77fc5a9e9c0892daa1919804f55a36a.setContent(html_242337f0c89111a587b9847605a3e11b);
            
        

        poly_line_9146f3555f0a2acc097609465cd37566.bindPopup(popup_a77fc5a9e9c0892daa1919804f55a36a)
        ;

        
    
    
            var poly_line_90c372a37c9273e59aa0c90c2b8899b8 = L.polyline(
                [[41.9045205, -87.6533404], [41.9045715, -87.6532229], [41.905005, -87.6522232]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a0be05d69e6e555644b525eb4e367712 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_50ed13d7ed3df0bc1dfe4b417d467c50 = $(`<div id=&quot;html_50ed13d7ed3df0bc1dfe4b417d467c50&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261207496 → 5493314555 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1125567609&quot; target=&quot;_blank&quot;>1125567609</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>107.00780593559979</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Evergreen Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_a0be05d69e6e555644b525eb4e367712.setContent(html_50ed13d7ed3df0bc1dfe4b417d467c50);
            
        

        poly_line_90c372a37c9273e59aa0c90c2b8899b8.bindPopup(popup_a0be05d69e6e555644b525eb4e367712)
        ;

        
    
    
            var poly_line_8f4242d310661c8bd6063cb11e8657b0 = L.polyline(
                [[41.9060398, -87.6500814], [41.9059724, -87.6500252], [41.9059506, -87.6500069], [41.9055905, -87.6497058]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_67d76962e045b66f49e0feaf7bebaaa8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9eb25aea30be23c84e1bf3b3e25c5013 = $(`<div id=&quot;html_9eb25aea30be23c84e1bf3b3e25c5013&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261230957 → 2387206222 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273622070&quot; target=&quot;_blank&quot;>273622070</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>58.840175322024656</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_67d76962e045b66f49e0feaf7bebaaa8.setContent(html_9eb25aea30be23c84e1bf3b3e25c5013);
            
        

        poly_line_8f4242d310661c8bd6063cb11e8657b0.bindPopup(popup_67d76962e045b66f49e0feaf7bebaaa8)
        ;

        
    
    
            var poly_line_c633f71523c2546a8ebb0c8a9d497d40 = L.polyline(
                [[41.9060398, -87.6500814], [41.9061094, -87.6501398], [41.9061275, -87.6501549], [41.9065372, -87.6504975]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_bac3cbeede57c069fc8477b113f05fd4 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_bf86d4dcd2d603a76df08487de3e0cbe = $(`<div id=&quot;html_bf86d4dcd2d603a76df08487de3e0cbe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261230957 → 5493322787 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273622070&quot; target=&quot;_blank&quot;>273622070</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>65.15187937609484</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_bac3cbeede57c069fc8477b113f05fd4.setContent(html_bf86d4dcd2d603a76df08487de3e0cbe);
            
        

        poly_line_c633f71523c2546a8ebb0c8a9d497d40.bindPopup(popup_bac3cbeede57c069fc8477b113f05fd4)
        ;

        
    
    
            var poly_line_71f8a58ed78c0c20631024d5c7954ef0 = L.polyline(
                [[41.9060398, -87.6500814], [41.9060037, -87.6501723], [41.9059899, -87.6502025], [41.9058064, -87.6506054], [41.9057397, -87.6506646]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_bb004192ae20b6a6d2575a43770a52ae = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_eab7e0ba2f515b6e7ed682359f384c26 = $(`<div id=&quot;html_eab7e0ba2f515b6e7ed682359f384c26&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261230957 → 2401648276 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1077476850&quot; target=&quot;_blank&quot;>1077476850</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>59.43830531341821</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Evergreen Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_bb004192ae20b6a6d2575a43770a52ae.setContent(html_eab7e0ba2f515b6e7ed682359f384c26);
            
        

        poly_line_71f8a58ed78c0c20631024d5c7954ef0.bindPopup(popup_bb004192ae20b6a6d2575a43770a52ae)
        ;

        
    
    
            var poly_line_d7383c4f2e12ba213ad2bc62e81ad04d = L.polyline(
                [[41.9060398, -87.6500814], [41.9060789, -87.6499883], [41.9060926, -87.6499597], [41.9063714, -87.64937]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_398d3cd21d3b631e1717f8fa6a1edd38 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_afecf5d68ef387462494388c39489bc9 = $(`<div id=&quot;html_afecf5d68ef387462494388c39489bc9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261230957 → 261260014 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1077476850&quot; target=&quot;_blank&quot;>1077476850</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>69.47669947773232</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Evergreen Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_398d3cd21d3b631e1717f8fa6a1edd38.setContent(html_afecf5d68ef387462494388c39489bc9);
            
        

        poly_line_d7383c4f2e12ba213ad2bc62e81ad04d.bindPopup(popup_398d3cd21d3b631e1717f8fa6a1edd38)
        ;

        
    
    
            var poly_line_fcceed53be79706363142e92da56ccb8 = L.polyline(
                [[41.9009407, -87.6458147], [41.9016538, -87.6464389]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_81169c4f1ee56aa0eda5e6ccb78d76cc = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4103188f919d18ddcd3882d1865b6572 = $(`<div id=&quot;html_4103188f919d18ddcd3882d1865b6572&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261230960 → 12182779439 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24371960&quot; target=&quot;_blank&quot;>24371960</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>94.63709768220319</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_81169c4f1ee56aa0eda5e6ccb78d76cc.setContent(html_4103188f919d18ddcd3882d1865b6572);
            
        

        poly_line_fcceed53be79706363142e92da56ccb8.bindPopup(popup_81169c4f1ee56aa0eda5e6ccb78d76cc)
        ;

        
    
    
            var poly_line_f8aece4a22dfc77d5d7dad19ecc7df2b = L.polyline(
                [[41.9009407, -87.6458147], [41.90128, -87.6451029]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_018a71355c536cbd243a419d72ceeee5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0a22ba6e57736fe0dab07aff3c91301e = $(`<div id=&quot;html_0a22ba6e57736fe0dab07aff3c91301e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261230960 → 353804288 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1125567607&quot; target=&quot;_blank&quot;>1125567607</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>69.95609476195007</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Hobbie Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_018a71355c536cbd243a419d72ceeee5.setContent(html_0a22ba6e57736fe0dab07aff3c91301e);
            
        

        poly_line_f8aece4a22dfc77d5d7dad19ecc7df2b.bindPopup(popup_018a71355c536cbd243a419d72ceeee5)
        ;

        
    
    
            var poly_line_0b714ccec9c18dc95c5110da27ba6696 = L.polyline(
                [[41.9009407, -87.6458147], [41.9008765, -87.645757], [41.9007094, -87.6456276]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7eea482be539366a475e882517c2a7a2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_344567b325caadc82be136c5fdb43d16 = $(`<div id=&quot;html_344567b325caadc82be136c5fdb43d16&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261230960 → 353804422 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/186983205&quot; target=&quot;_blank&quot;>186983205</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>30.034818026485542</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_7eea482be539366a475e882517c2a7a2.setContent(html_344567b325caadc82be136c5fdb43d16);
            
        

        poly_line_0b714ccec9c18dc95c5110da27ba6696.bindPopup(popup_7eea482be539366a475e882517c2a7a2)
        ;

        
    
    
            var poly_line_bdcf02f7fa5732e6a19888e28e1e8c33 = L.polyline(
                [[41.8997398, -87.6447901], [41.8998108, -87.6448542], [41.899824, -87.6448642], [41.8998708, -87.6449096], [41.8998954, -87.6449324]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4fa494294a759fa1dd31407e2ed29867 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e02272ea68ffb67d163334af11b76c99 = $(`<div id=&quot;html_e02272ea68ffb67d163334af11b76c99&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261230962 → 1977388034 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/130807195&quot; target=&quot;_blank&quot;>130807195</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.938625119981022</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_4fa494294a759fa1dd31407e2ed29867.setContent(html_e02272ea68ffb67d163334af11b76c99);
            
        

        poly_line_bdcf02f7fa5732e6a19888e28e1e8c33.bindPopup(popup_4fa494294a759fa1dd31407e2ed29867)
        ;

        
    
    
            var poly_line_e3c2aefa3b476cdf0f4eb835ebf7fc9f = L.polyline(
                [[41.8997398, -87.6447901], [41.8997681, -87.6447233], [41.8997806, -87.6446959], [41.8999419, -87.6443615], [41.900073, -87.644079]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_841fa8ccb0309eb5f8df1dc8683184c1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_95f0d2fb7e1e3d9353e9a85f398e2a86 = $(`<div id=&quot;html_95f0d2fb7e1e3d9353e9a85f398e2a86&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261230962 → 353804292 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1077476899&quot; target=&quot;_blank&quot;>1077476899</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>69.55410427411377</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Oak Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_841fa8ccb0309eb5f8df1dc8683184c1.setContent(html_95f0d2fb7e1e3d9353e9a85f398e2a86);
            
        

        poly_line_e3c2aefa3b476cdf0f4eb835ebf7fc9f.bindPopup(popup_841fa8ccb0309eb5f8df1dc8683184c1)
        ;

        
    
    
            var poly_line_1da2145d690bcd021896e0f43044a79b = L.polyline(
                [[41.9003585, -87.6504792], [41.9003464, -87.650456]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c4c69dd511bd807576487c3e7396d166 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a83c30296e9a1dbda945dcffa82233cd = $(`<div id=&quot;html_a83c30296e9a1dbda945dcffa82233cd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261249589 → 6776130126 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24096218&quot; target=&quot;_blank&quot;>24096218</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>2.3445859684136026</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_c4c69dd511bd807576487c3e7396d166.setContent(html_a83c30296e9a1dbda945dcffa82233cd);
            
        

        poly_line_1da2145d690bcd021896e0f43044a79b.bindPopup(popup_c4c69dd511bd807576487c3e7396d166)
        ;

        
    
    
            var poly_line_ad0bdffd2b0ea831595266c760c2316f = L.polyline(
                [[41.9003585, -87.6504792], [41.9004146, -87.6505903]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_adec901616bf438d1ddf648d3a42e18c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5ff3c575d5b550d0db4c5e9934b1e127 = $(`<div id=&quot;html_5ff3c575d5b550d0db4c5e9934b1e127&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261249589 → 6776130135 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1125567637&quot; target=&quot;_blank&quot;>1125567637</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>11.111311148898983</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_adec901616bf438d1ddf648d3a42e18c.setContent(html_5ff3c575d5b550d0db4c5e9934b1e127);
            
        

        poly_line_ad0bdffd2b0ea831595266c760c2316f.bindPopup(popup_adec901616bf438d1ddf648d3a42e18c)
        ;

        
    
    
            var poly_line_9c015be0b648547608968621d35b2437 = L.polyline(
                [[41.9003585, -87.6504792], [41.9004427, -87.6503965], [41.9005143, -87.6503263], [41.90063, -87.6501345]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_58be473c671f735c47b8e339dbfcc488 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_764565b8025fd3b59de93740439ee969 = $(`<div id=&quot;html_764565b8025fd3b59de93740439ee969&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261249589 → 261126253 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24072656&quot; target=&quot;_blank&quot;>24072656</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>41.886522175707654</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Haines Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_58be473c671f735c47b8e339dbfcc488.setContent(html_764565b8025fd3b59de93740439ee969);
            
        

        poly_line_9c015be0b648547608968621d35b2437.bindPopup(popup_58be473c671f735c47b8e339dbfcc488)
        ;

        
    
    
            var poly_line_5f02489ed583a201dd22183750f8122b = L.polyline(
                [[41.9064087, -87.6442033], [41.9063699, -87.6465401]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_623982d8ef19ef9d3f9d868ba04d52fd = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3932f138d24154473f39b59de1d26ae7 = $(`<div id=&quot;html_3932f138d24154473f39b59de1d26ae7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261260007 → 2303534169 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24097869&quot; target=&quot;_blank&quot;>24097869</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>193.43118051716857</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Evergreen Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_623982d8ef19ef9d3f9d868ba04d52fd.setContent(html_3932f138d24154473f39b59de1d26ae7);
            
        

        poly_line_5f02489ed583a201dd22183750f8122b.bindPopup(popup_623982d8ef19ef9d3f9d868ba04d52fd)
        ;

        
    
    
            var poly_line_65ef8acd76ac0eb78a184b5fa685f4b6 = L.polyline(
                [[41.9064087, -87.6442033], [41.9065163, -87.6442033], [41.9069782, -87.6442035], [41.9070152, -87.6442035]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6d44166d42d3898048af4c61f468c336 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e22240739d774256acf249bbeeb3d311 = $(`<div id=&quot;html_e22240739d774256acf249bbeeb3d311&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261260007 → 12049414910 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/80207803&quot; target=&quot;_blank&quot;>80207803</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>67.43982094477936</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_6d44166d42d3898048af4c61f468c336.setContent(html_e22240739d774256acf249bbeeb3d311);
            
        

        poly_line_65ef8acd76ac0eb78a184b5fa685f4b6.bindPopup(popup_6d44166d42d3898048af4c61f468c336)
        ;

        
    
    
            var poly_line_24870936399394ac1f471d2e44f9d679 = L.polyline(
                [[41.9064087, -87.6442033], [41.9063621, -87.6442033], [41.9060043, -87.6442032]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_552e17842edc397a203ead3956973cd6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_50874b6c40507404329e3fd19c603d71 = $(`<div id=&quot;html_50874b6c40507404329e3fd19c603d71&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261260007 → 935895010 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/80207803&quot; target=&quot;_blank&quot;>80207803</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>44.967292718578946</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_552e17842edc397a203ead3956973cd6.setContent(html_50874b6c40507404329e3fd19c603d71);
            
        

        poly_line_24870936399394ac1f471d2e44f9d679.bindPopup(popup_552e17842edc397a203ead3956973cd6)
        ;

        
    
    
            var poly_line_0bf8afdb152ecc9d41fc7f80855b517c = L.polyline(
                [[41.9063714, -87.64937], [41.9063724, -87.6491377]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a32b544b6a6efdd3ff3fdc0454656436 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_cba3ac1673668bac88ed1502860dae40 = $(`<div id=&quot;html_cba3ac1673668bac88ed1502860dae40&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261260014 → 2387195200 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/80207804&quot; target=&quot;_blank&quot;>80207804</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.22443020714411</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Evergreen Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_a32b544b6a6efdd3ff3fdc0454656436.setContent(html_cba3ac1673668bac88ed1502860dae40);
            
        

        poly_line_0bf8afdb152ecc9d41fc7f80855b517c.bindPopup(popup_a32b544b6a6efdd3ff3fdc0454656436)
        ;

        
    
    
            var poly_line_58fb74d0b51b31c897de1cecc19f8224 = L.polyline(
                [[41.9063714, -87.64937], [41.9064367, -87.6493726], [41.9073821, -87.6494108], [41.9074541, -87.6494137]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f384ee3d2a16f54ebc914fcf6c63df54 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3c20683f25dd6b82b0fa196032680324 = $(`<div id=&quot;html_3c20683f25dd6b82b0fa196032680324&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261260014 → 261162243 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24103945&quot; target=&quot;_blank&quot;>24103945</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>120.44522132319888</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Dayton Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_f384ee3d2a16f54ebc914fcf6c63df54.setContent(html_3c20683f25dd6b82b0fa196032680324);
            
        

        poly_line_58fb74d0b51b31c897de1cecc19f8224.bindPopup(popup_f384ee3d2a16f54ebc914fcf6c63df54)
        ;

        
    
    
            var poly_line_f21f5ef598e78c930f4a468d9adf46f6 = L.polyline(
                [[41.9063714, -87.64937], [41.9060926, -87.6499597], [41.9060789, -87.6499883], [41.9060398, -87.6500814]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2538ffb0dbf9e4774068db3796023606 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1e340b10543210daf0f2d431fd0d0e48 = $(`<div id=&quot;html_1e340b10543210daf0f2d431fd0d0e48&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261260014 → 261230957 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1077476850&quot; target=&quot;_blank&quot;>1077476850</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>69.47669947773232</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Evergreen Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_2538ffb0dbf9e4774068db3796023606.setContent(html_1e340b10543210daf0f2d431fd0d0e48);
            
        

        poly_line_f21f5ef598e78c930f4a468d9adf46f6.bindPopup(popup_2538ffb0dbf9e4774068db3796023606)
        ;

        
    
    
            var poly_line_91a53c944b89f5f5585d9318b15338be = L.polyline(
                [[41.8998485, -87.6586089], [41.8997744, -87.6586059], [41.8994123, -87.6585924]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_88e0bcf8d4d79602a5991ad70e42b578 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c212ec08bc66b88171168e303925e801 = $(`<div id=&quot;html_c212ec08bc66b88171168e303925e801&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261261682 → 5907549156 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24098076&quot; target=&quot;_blank&quot;>24098076</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>48.52253550667622</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Willard Court</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_88e0bcf8d4d79602a5991ad70e42b578.setContent(html_c212ec08bc66b88171168e303925e801);
            
        

        poly_line_91a53c944b89f5f5585d9318b15338be.bindPopup(popup_88e0bcf8d4d79602a5991ad70e42b578)
        ;

        
    
    
            var poly_line_9c8ec58ecf3e0f4b16f34175f21581ba = L.polyline(
                [[41.8998485, -87.6586089], [41.8998465, -87.6588812], [41.8999309, -87.6588831], [41.8999825, -87.6588842], [41.9001849, -87.6588948], [41.9002115, -87.6589008], [41.9002377, -87.6589168], [41.9005836, -87.6592384], [41.9006267, -87.6592816], [41.9006493, -87.6593277], [41.900656, -87.6594031], [41.900643, -87.6600114], [41.9006515, -87.6600827], [41.900664, -87.6601343], [41.9007026, -87.6601597], [41.9007492, -87.6601771], [41.9018975, -87.6602144], [41.902249, -87.6603784]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3f21ef2657a78442b13d69f8f00a0ff8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b0a1488f567a11e6add41130b678e06a = $(`<div id=&quot;html_b0a1488f567a11e6add41130b678e06a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261261682 → 7506296591 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/259263025&quot; target=&quot;_blank&quot;>259263025</a>, <a href=&quot;https://www.openstreetmap.org/way/32468994&quot; target=&quot;_blank&quot;>32468994</a>, <a href=&quot;https://www.openstreetmap.org/way/569978483&quot; target=&quot;_blank&quot;>569978483</a>, <a href=&quot;https://www.openstreetmap.org/way/24116131&quot; target=&quot;_blank&quot;>24116131</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>370.07844093978724</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>['West Augusta Boulevard', 'North Throop Street', 'West Cortez Street', 'North Willard Court']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_3f21ef2657a78442b13d69f8f00a0ff8.setContent(html_b0a1488f567a11e6add41130b678e06a);
            
        

        poly_line_9c8ec58ecf3e0f4b16f34175f21581ba.bindPopup(popup_3f21ef2657a78442b13d69f8f00a0ff8)
        ;

        
    
    
            var poly_line_42f4f466d8f561655dfe2cf1282877df = L.polyline(
                [[41.8998485, -87.6586089], [41.8998276, -87.6583405], [41.8998384, -87.6577542], [41.8998671, -87.6576014]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7a537299570dfc37bb802633f24f49e1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_25638151159b4e1e860cf4ed14ff1a60 = $(`<div id=&quot;html_25638151159b4e1e860cf4ed14ff1a60&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261261682 → 261336508 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1322005867&quot; target=&quot;_blank&quot;>1322005867</a>, <a href=&quot;https://www.openstreetmap.org/way/1322005868&quot; target=&quot;_blank&quot;>1322005868</a>, <a href=&quot;https://www.openstreetmap.org/way/1213415470&quot; target=&quot;_blank&quot;>1213415470</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>83.91726559616234</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Augusta Boulevard</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_7a537299570dfc37bb802633f24f49e1.setContent(html_25638151159b4e1e860cf4ed14ff1a60);
            
        

        poly_line_42f4f466d8f561655dfe2cf1282877df.bindPopup(popup_7a537299570dfc37bb802633f24f49e1)
        ;

        
    
    
            var poly_line_8413d76fcbff9df10db719d0dca2c568 = L.polyline(
                [[41.9087303, -87.6554784], [41.9087553, -87.6554313]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a5bb01276c548834909fd549643c43ed = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1b38f90058b23216d57375559aa0820b = $(`<div id=&quot;html_1b38f90058b23216d57375559aa0820b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261282329 → 12177117212 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24083759&quot; target=&quot;_blank&quot;>24083759</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>4.787412471972446</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Weed Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_a5bb01276c548834909fd549643c43ed.setContent(html_1b38f90058b23216d57375559aa0820b);
            
        

        poly_line_8413d76fcbff9df10db719d0dca2c568.bindPopup(popup_a5bb01276c548834909fd549643c43ed)
        ;

        
    
    
            var poly_line_45e4f460eccdd3dc3a14a0b5b9af4568 = L.polyline(
                [[41.9087303, -87.6554784], [41.9090081, -87.6554876]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_67774372ff43b2807717c5644b51b27d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_79a06d61d2a2c29b0ee07f861c645a34 = $(`<div id=&quot;html_79a06d61d2a2c29b0ee07f861c645a34&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261282329 → 12177117240 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/372671695&quot; target=&quot;_blank&quot;>372671695</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>30.89937467036666</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Cherry Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_67774372ff43b2807717c5644b51b27d.setContent(html_79a06d61d2a2c29b0ee07f861c645a34);
            
        

        poly_line_45e4f460eccdd3dc3a14a0b5b9af4568.bindPopup(popup_67774372ff43b2807717c5644b51b27d)
        ;

        
    
    
            var poly_line_47688c56388ddae47feef1443d764056 = L.polyline(
                [[41.9087303, -87.6554784], [41.9086673, -87.6554763], [41.9083685, -87.6554714], [41.9082258, -87.655469], [41.9081682, -87.655468], [41.9081416, -87.6554674], [41.9080803, -87.655466], [41.9077063, -87.6554574], [41.9076158, -87.6554553]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ce0ad2e8cd0a6d1c60bdfe63ad9f86b3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6f863a56dd13f3ba7bac4efdc98712b9 = $(`<div id=&quot;html_6f863a56dd13f3ba7bac4efdc98712b9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261282329 → 5493314397 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/372671695&quot; target=&quot;_blank&quot;>372671695</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>123.94231843366687</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Cherry Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_ce0ad2e8cd0a6d1c60bdfe63ad9f86b3.setContent(html_6f863a56dd13f3ba7bac4efdc98712b9);
            
        

        poly_line_47688c56388ddae47feef1443d764056.bindPopup(popup_ce0ad2e8cd0a6d1c60bdfe63ad9f86b3)
        ;

        
    
    
            var poly_line_3d4d7fffb41d919a19c1a0f433831ec9 = L.polyline(
                [[41.9067547, -87.6473594], [41.9067538, -87.6474399], [41.9067473, -87.6480513], [41.9067461, -87.6481654]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d187dddb04761259438ca923acb0df8b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d6d93920669ba45d90739be2f46e6785 = $(`<div id=&quot;html_d6d93920669ba45d90739be2f46e6785&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261318537 → 264431868 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24108123&quot; target=&quot;_blank&quot;>24108123</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>66.70741480864956</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Fair Place</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_d187dddb04761259438ca923acb0df8b.setContent(html_d6d93920669ba45d90739be2f46e6785);
            
        

        poly_line_3d4d7fffb41d919a19c1a0f433831ec9.bindPopup(popup_d187dddb04761259438ca923acb0df8b)
        ;

        
    
    
            var poly_line_488cdb0c53c503feec7046f5586856a2 = L.polyline(
                [[41.9067547, -87.6473594], [41.9072444, -87.6473763], [41.9072454, -87.6472997], [41.9072578, -87.6463921]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_78c6159cd2ffb815610258417b634260 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f5cb4a14c287a39f11fbd537de65bfc6 = $(`<div id=&quot;html_f5cb4a14c287a39f11fbd537de65bfc6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261318537 → 264431790 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/80207802&quot; target=&quot;_blank&quot;>80207802</a>, <a href=&quot;https://www.openstreetmap.org/way/608424116&quot; target=&quot;_blank&quot;>608424116</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>['residential', 'service']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>135.930686805563</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>['North Burling Street', 'West Schiller Street']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_78c6159cd2ffb815610258417b634260.setContent(html_f5cb4a14c287a39f11fbd537de65bfc6);
            
        

        poly_line_488cdb0c53c503feec7046f5586856a2.bindPopup(popup_78c6159cd2ffb815610258417b634260)
        ;

        
    
    
            var poly_line_00d1fa19e003622f8bbd80bcb2fad886 = L.polyline(
                [[41.9067547, -87.6473594], [41.9065656, -87.6473528], [41.906508, -87.6473508]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_154cd3a60ffa961842e5019138d003c8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0df943553a387d3abd28636f2f288203 = $(`<div id=&quot;html_0df943553a387d3abd28636f2f288203&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261318537 → 935894861 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/80207802&quot; target=&quot;_blank&quot;>80207802</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>27.441057790957014</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Burling Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_154cd3a60ffa961842e5019138d003c8.setContent(html_0df943553a387d3abd28636f2f288203);
            
        

        poly_line_00d1fa19e003622f8bbd80bcb2fad886.bindPopup(popup_154cd3a60ffa961842e5019138d003c8)
        ;

        
    
    
            var poly_line_e2bf66d9ec0e9b50a15d616637d82e3c = L.polyline(
                [[41.9090632, -87.6603421], [41.9090642, -87.6602446], [41.9090652, -87.6601414]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fc4e708fd8f4b7101ce86a70e959eb80 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e15e7cfd2bf0a598357b9c27c04a8822 = $(`<div id=&quot;html_e15e7cfd2bf0a598357b9c27c04a8822&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261322937 → 5493211414 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24109017&quot; target=&quot;_blank&quot;>24109017</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>16.609823642068058</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Le Moyne Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_fc4e708fd8f4b7101ce86a70e959eb80.setContent(html_e15e7cfd2bf0a598357b9c27c04a8822);
            
        

        poly_line_e2bf66d9ec0e9b50a15d616637d82e3c.bindPopup(popup_fc4e708fd8f4b7101ce86a70e959eb80)
        ;

        
    
    
            var poly_line_34f91af7dbe47ab5d43267b579dead98 = L.polyline(
                [[41.9090632, -87.6603421], [41.909062, -87.6604618], [41.90906, -87.660749]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_581d9a84884d276e8dcc52414d7c5af5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f55c74f4934c7e62aa668cd798a7d09c = $(`<div id=&quot;html_f55c74f4934c7e62aa668cd798a7d09c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261322937 → 4621143835 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316291527&quot; target=&quot;_blank&quot;>1316291527</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>33.673743955297276</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Le Moyne Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_581d9a84884d276e8dcc52414d7c5af5.setContent(html_f55c74f4934c7e62aa668cd798a7d09c);
            
        

        poly_line_34f91af7dbe47ab5d43267b579dead98.bindPopup(popup_581d9a84884d276e8dcc52414d7c5af5)
        ;

        
    
    
            var poly_line_0e505c2345284cf60da41ec1ed02745a = L.polyline(
                [[41.8998671, -87.6576014], [41.8998742, -87.6572484]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4188d0734005ddaac6dad7e2e3a300b8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e9123a5785076f87d34cf464da0e830b = $(`<div id=&quot;html_e9123a5785076f87d34cf464da0e830b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261336508 → 5479954573 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/569914535&quot; target=&quot;_blank&quot;>569914535</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>29.226340223105115</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Augusta Boulevard</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_4188d0734005ddaac6dad7e2e3a300b8.setContent(html_e9123a5785076f87d34cf464da0e830b);
            
        

        poly_line_0e505c2345284cf60da41ec1ed02745a.bindPopup(popup_4188d0734005ddaac6dad7e2e3a300b8)
        ;

        
    
    
            var poly_line_ebfa9963922d59bcd364be414517f4a6 = L.polyline(
                [[41.8998671, -87.6576014], [41.8997934, -87.6575972], [41.8997498, -87.6575948], [41.8993639, -87.6575863], [41.8977755, -87.6575474], [41.8977224, -87.6575461], [41.8976972, -87.6575454]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f401afcfb2d31b2455ab40e80872d48a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f1c45ecda19c28d5dddbb8a40579cb90 = $(`<div id=&quot;html_f1c45ecda19c28d5dddbb8a40579cb90&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261336508 → 12289051304 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1213415324&quot; target=&quot;_blank&quot;>1213415324</a>, <a href=&quot;https://www.openstreetmap.org/way/1213415325&quot; target=&quot;_blank&quot;>1213415325</a>, <a href=&quot;https://www.openstreetmap.org/way/24442831&quot; target=&quot;_blank&quot;>24442831</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>241.33033597802907</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Racine Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_f401afcfb2d31b2455ab40e80872d48a.setContent(html_f1c45ecda19c28d5dddbb8a40579cb90);
            
        

        poly_line_ebfa9963922d59bcd364be414517f4a6.bindPopup(popup_f401afcfb2d31b2455ab40e80872d48a)
        ;

        
    
    
            var poly_line_ebdb2e9b3a93d4941714ef3bc7f8c7f4 = L.polyline(
                [[41.8998671, -87.6576014], [41.8998979, -87.6578278], [41.8998871, -87.6584141], [41.8998485, -87.6586089]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d702d5e9ca1d4d07e235196f27700419 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2cae87d7a829b8217db209a56c713d04 = $(`<div id=&quot;html_2cae87d7a829b8217db209a56c713d04&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261336508 → 261261682 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1322005866&quot; target=&quot;_blank&quot;>1322005866</a>, <a href=&quot;https://www.openstreetmap.org/way/59196010&quot; target=&quot;_blank&quot;>59196010</a>, <a href=&quot;https://www.openstreetmap.org/way/1213415471&quot; target=&quot;_blank&quot;>1213415471</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>84.27148420172426</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Augusta Boulevard</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_d702d5e9ca1d4d07e235196f27700419.setContent(html_2cae87d7a829b8217db209a56c713d04);
            
        

        poly_line_ebdb2e9b3a93d4941714ef3bc7f8c7f4.bindPopup(popup_d702d5e9ca1d4d07e235196f27700419)
        ;

        
    
    
            var poly_line_345efe741ecfc144f292f944d7e2d50f = L.polyline(
                [[41.9001474, -87.6479331], [41.8999004, -87.6479232]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_57da818cbc66db4637089600458ea125 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_93a0072f86403b36455de3fd576e65f8 = $(`<div id=&quot;html_93a0072f86403b36455de3fd576e65f8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261916117 → 3762220112 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/242897402&quot; target=&quot;_blank&quot;>242897402</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>27.47740484770669</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Halsted Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_57da818cbc66db4637089600458ea125.setContent(html_93a0072f86403b36455de3fd576e65f8);
            
        

        poly_line_345efe741ecfc144f292f944d7e2d50f.bindPopup(popup_57da818cbc66db4637089600458ea125)
        ;

        
    
    
            var poly_line_76cf76d6c19b415050e8f4a3f589366d = L.polyline(
                [[41.9001474, -87.6479331], [41.900786, -87.6479576], [41.9010944, -87.6479714]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_845f6402655dfbe63f42ff4b1ed05eb6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d2566c3b5e8e3306c8a3006734bc5f3d = $(`<div id=&quot;html_d2566c3b5e8e3306c8a3006734bc5f3d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261916117 → 12182779452 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/242897402&quot; target=&quot;_blank&quot;>242897402</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>105.34970338145226</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Halsted Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_845f6402655dfbe63f42ff4b1ed05eb6.setContent(html_d2566c3b5e8e3306c8a3006734bc5f3d);
            
        

        poly_line_76cf76d6c19b415050e8f4a3f589366d.bindPopup(popup_845f6402655dfbe63f42ff4b1ed05eb6)
        ;

        
    
    
            var poly_line_a39a5d6d40b3ac4093a358c1213c0428 = L.polyline(
                [[41.9001474, -87.6479331], [41.9001493, -87.6478268], [41.9000297, -87.6474208], [41.9000336, -87.647324]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_62ae09ac98657341d752dd3a1ae00624 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_82b9c8d0e723bb4f798f17c4e40a270e = $(`<div id=&quot;html_82b9c8d0e723bb4f798f17c4e40a270e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261916117 → 12182928235 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/756865740&quot; target=&quot;_blank&quot;>756865740</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>52.96162419345454</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_62ae09ac98657341d752dd3a1ae00624.setContent(html_82b9c8d0e723bb4f798f17c4e40a270e);
            
        

        poly_line_a39a5d6d40b3ac4093a358c1213c0428.bindPopup(popup_62ae09ac98657341d752dd3a1ae00624)
        ;

        
    
    
            var poly_line_009d7fead768016718ee42fce007ec6a = L.polyline(
                [[41.9001474, -87.6479331], [41.9001487, -87.6480446], [41.9002356, -87.6481699]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_41fb1e3a2cde5d89ad04889ce84e0095 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a9bd0dce91235dab8fbc05bccfc4788e = $(`<div id=&quot;html_a9bd0dce91235dab8fbc05bccfc4788e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 261916117 → 5492726816 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1125567617&quot; target=&quot;_blank&quot;>1125567617</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>23.403659631517048</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Hooker Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_41fb1e3a2cde5d89ad04889ce84e0095.setContent(html_a9bd0dce91235dab8fbc05bccfc4788e);
            
        

        poly_line_009d7fead768016718ee42fce007ec6a.bindPopup(popup_41fb1e3a2cde5d89ad04889ce84e0095)
        ;

        
    
    
            var poly_line_0d3c15703d42f2f415cfb3a70a497fa8 = L.polyline(
                [[41.903534, -87.6554481], [41.9034428, -87.6553769], [41.9033305, -87.6552863]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5b94603d42a470df50466d3e01bf3289 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_07ca2968399b5d7b0430cc7dc48bc533 = $(`<div id=&quot;html_07ca2968399b5d7b0430cc7dc48bc533&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 262368116 → 11751927229 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273623183&quot; target=&quot;_blank&quot;>273623183</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>26.294014290518056</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_5b94603d42a470df50466d3e01bf3289.setContent(html_07ca2968399b5d7b0430cc7dc48bc533);
            
        

        poly_line_0d3c15703d42f2f415cfb3a70a497fa8.bindPopup(popup_5b94603d42a470df50466d3e01bf3289)
        ;

        
    
    
            var poly_line_9a6283dccbdef5511c23da1ac84292ce = L.polyline(
                [[41.903534, -87.6554481], [41.9035358, -87.6553319], [41.9035397, -87.6550797]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c1db89bf53a4537934199cea9ce4d10c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a0fa535e1b67cc1e22c4815de51aebd2 = $(`<div id=&quot;html_a0fa535e1b67cc1e22c4815de51aebd2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 262368116 → 5493314487 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/372671688&quot; target=&quot;_blank&quot;>372671688</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>30.495076783697407</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_c1db89bf53a4537934199cea9ce4d10c.setContent(html_a0fa535e1b67cc1e22c4815de51aebd2);
            
        

        poly_line_9a6283dccbdef5511c23da1ac84292ce.bindPopup(popup_c1db89bf53a4537934199cea9ce4d10c)
        ;

        
    
    
            var poly_line_5325253d433f405e773ffaf05c36631b = L.polyline(
                [[41.903534, -87.6554481], [41.9036158, -87.6555185], [41.9038455, -87.655716]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_362e799880eab2d7e2fadf5a6c720d93 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_52256324016906e6d48e1a39cdd7b8ee = $(`<div id=&quot;html_52256324016906e6d48e1a39cdd7b8ee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 262368116 → 5493314470 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1274943577&quot; target=&quot;_blank&quot;>1274943577</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>41.12541477312992</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_362e799880eab2d7e2fadf5a6c720d93.setContent(html_52256324016906e6d48e1a39cdd7b8ee);
            
        

        poly_line_5325253d433f405e773ffaf05c36631b.bindPopup(popup_362e799880eab2d7e2fadf5a6c720d93)
        ;

        
    
    
            var poly_line_1c2a98182fca3b5c12a113d73f9a1b5e = L.polyline(
                [[41.903534, -87.6554481], [41.9035323, -87.6555632], [41.903514, -87.6567548]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a73bc30a150f83131f0b392558af8743 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f9cd0c3488ca12ddd972646f01d9f904 = $(`<div id=&quot;html_f9cd0c3488ca12ddd972646f01d9f904&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 262368116 → 11751927279 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1274943578&quot; target=&quot;_blank&quot;>1274943578</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>108.16433629832518</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_a73bc30a150f83131f0b392558af8743.setContent(html_f9cd0c3488ca12ddd972646f01d9f904);
            
        

        poly_line_1c2a98182fca3b5c12a113d73f9a1b5e.bindPopup(popup_a73bc30a150f83131f0b392558af8743)
        ;

        
    
    
            var poly_line_708609a4fc5cd647666c65b710e23d2f = L.polyline(
                [[41.9048387, -87.6432523], [41.9050612, -87.6432596]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fdb9b04e02522fce1095c212c274a487 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_681fc4b9e341524d133fc3fb85b05d11 = $(`<div id=&quot;html_681fc4b9e341524d133fc3fb85b05d11&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 262368672 → 261184870 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/519888263&quot; target=&quot;_blank&quot;>519888263</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>24.748280902707737</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_fdb9b04e02522fce1095c212c274a487.setContent(html_681fc4b9e341524d133fc3fb85b05d11);
            
        

        poly_line_708609a4fc5cd647666c65b710e23d2f.bindPopup(popup_fdb9b04e02522fce1095c212c274a487)
        ;

        
    
    
            var poly_line_469244c0e68dbde4078abf1ef05e0613 = L.polyline(
                [[41.9048387, -87.6432523], [41.904651, -87.6432463]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_cd01c0d4e1ae2e68dc3a7afc4ea86cb4 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7b55ef7d20e8ccdf495c81e918154d14 = $(`<div id=&quot;html_7b55ef7d20e8ccdf495c81e918154d14&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 262368672 → 7757124494 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/519888263&quot; target=&quot;_blank&quot;>519888263</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.87722299603913</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_cd01c0d4e1ae2e68dc3a7afc4ea86cb4.setContent(html_7b55ef7d20e8ccdf495c81e918154d14);
            
        

        poly_line_469244c0e68dbde4078abf1ef05e0613.bindPopup(popup_cd01c0d4e1ae2e68dc3a7afc4ea86cb4)
        ;

        
    
    
            var poly_line_d9aa2eba0bbac9705f55a91e84047474 = L.polyline(
                [[41.9074706, -87.6481841], [41.9074683, -87.6482963], [41.9074601, -87.6487926]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_442c73b543b0b110756c0326169299ad = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a9ca1521eb11ebdfbf1102e8d3638661 = $(`<div id=&quot;html_a9ca1521eb11ebdfbf1102e8d3638661&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 262368739 → 2401648294 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24079428&quot; target=&quot;_blank&quot;>24079428</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>50.36951662500376</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Eastman Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_442c73b543b0b110756c0326169299ad.setContent(html_a9ca1521eb11ebdfbf1102e8d3638661);
            
        

        poly_line_d9aa2eba0bbac9705f55a91e84047474.bindPopup(popup_442c73b543b0b110756c0326169299ad)
        ;

        
    
    
            var poly_line_01a24906fae7660b280f79cbe660ee0c = L.polyline(
                [[41.9074706, -87.6481841], [41.9074042, -87.6481819], [41.9072306, -87.6481775], [41.9067461, -87.6481654]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6b20d2c88c0db8f4cfb8e56bf61762f3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8ba23b454e18def2eced4be8ab3cc1a2 = $(`<div id=&quot;html_8ba23b454e18def2eced4be8ab3cc1a2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 262368739 → 264431868 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1101320096&quot; target=&quot;_blank&quot;>1101320096</a>, <a href=&quot;https://www.openstreetmap.org/way/488118938&quot; target=&quot;_blank&quot;>488118938</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>3</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>80.57582114126511</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Halsted Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_6b20d2c88c0db8f4cfb8e56bf61762f3.setContent(html_8ba23b454e18def2eced4be8ab3cc1a2);
            
        

        poly_line_01a24906fae7660b280f79cbe660ee0c.bindPopup(popup_6b20d2c88c0db8f4cfb8e56bf61762f3)
        ;

        
    
    
            var poly_line_c2054e8cb8e85e6af18b7bb100633909 = L.polyline(
                [[41.9074706, -87.6481841], [41.9074726, -87.6480722], [41.9074731, -87.6480419], [41.9074819, -87.647537]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b121e6397abd1e4f7ee125e05cafeb74 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a6fa49334a05f0e45caac57ba23e6f4d = $(`<div id=&quot;html_a6fa49334a05f0e45caac57ba23e6f4d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 262368739 → 11310995662 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1024669102&quot; target=&quot;_blank&quot;>1024669102</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>53.564917207140404</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Schiller Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_b121e6397abd1e4f7ee125e05cafeb74.setContent(html_a6fa49334a05f0e45caac57ba23e6f4d);
            
        

        poly_line_c2054e8cb8e85e6af18b7bb100633909.bindPopup(popup_b121e6397abd1e4f7ee125e05cafeb74)
        ;

        
    
    
            var poly_line_d767254e50f0c1ffc78882c7fb968133 = L.polyline(
                [[41.9074706, -87.6481841], [41.9075617, -87.6481859], [41.9076397, -87.6481876], [41.9082616, -87.6482055], [41.9085027, -87.6482125], [41.9085748, -87.6482146]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ba90bb8b462a376f9ae48c8a965eda73 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a7779bfa634bad2e5251dc86af33866a = $(`<div id=&quot;html_a7779bfa634bad2e5251dc86af33866a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 262368739 → 265642220 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/488118937&quot; target=&quot;_blank&quot;>488118937</a>, <a href=&quot;https://www.openstreetmap.org/way/1377435755&quot; target=&quot;_blank&quot;>1377435755</a>, <a href=&quot;https://www.openstreetmap.org/way/1024669103&quot; target=&quot;_blank&quot;>1024669103</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>3</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>122.80785141436449</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Halsted Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_ba90bb8b462a376f9ae48c8a965eda73.setContent(html_a7779bfa634bad2e5251dc86af33866a);
            
        

        poly_line_d767254e50f0c1ffc78882c7fb968133.bindPopup(popup_ba90bb8b462a376f9ae48c8a965eda73)
        ;

        
    
    
            var poly_line_e63b6fc027e09ce6dc9fb70d7ae81851 = L.polyline(
                [[41.9110191, -87.6443629], [41.9109556, -87.6443618]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_180aad8b19fafe5218eef4e375f72e85 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fd7cd984cd0bb39b10f7f2f0657b9fab = $(`<div id=&quot;html_fd7cd984cd0bb39b10f7f2f0657b9fab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 262368937 → 11891979872 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24092010&quot; target=&quot;_blank&quot;>24092010</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.061474506149852</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Vine Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_180aad8b19fafe5218eef4e375f72e85.setContent(html_fd7cd984cd0bb39b10f7f2f0657b9fab);
            
        

        poly_line_e63b6fc027e09ce6dc9fb70d7ae81851.bindPopup(popup_180aad8b19fafe5218eef4e375f72e85)
        ;

        
    
    
            var poly_line_bab2b95c60677309d4ba881ed0bd2563 = L.polyline(
                [[41.9110191, -87.6443629], [41.9109986, -87.6456865], [41.9109976, -87.645749], [41.910996, -87.6458528]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8e6d02b3a011249305ecd71dacbaf723 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_311225702411545f0c783a4c893c58fc = $(`<div id=&quot;html_311225702411545f0c783a4c893c58fc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 262368937 → 11891745322 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1281217244&quot; target=&quot;_blank&quot;>1281217244</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>primary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>123.31526033487623</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West North Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>ref</td><td style='padding:2px 6px;'>IL 64</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_8e6d02b3a011249305ecd71dacbaf723.setContent(html_311225702411545f0c783a4c893c58fc);
            
        

        poly_line_bab2b95c60677309d4ba881ed0bd2563.bindPopup(popup_8e6d02b3a011249305ecd71dacbaf723)
        ;

        
    
    
            var poly_line_687a221fc2ebad08fc6658f13aef7ba8 = L.polyline(
                [[41.9107677, -87.6586189], [41.9107641, -87.6590223]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9818e502138c1c01fbff78d5f96530ea = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7cbf27cb6fc859250033d1e166d3ced6 = $(`<div id=&quot;html_7cbf27cb6fc859250033d1e166d3ced6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 263404658 → 11891975148 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1281243527&quot; target=&quot;_blank&quot;>1281243527</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>primary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>5</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>33.38368143700331</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West North Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>ref</td><td style='padding:2px 6px;'>IL 64</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_9818e502138c1c01fbff78d5f96530ea.setContent(html_7cbf27cb6fc859250033d1e166d3ced6);
            
        

        poly_line_687a221fc2ebad08fc6658f13aef7ba8.bindPopup(popup_9818e502138c1c01fbff78d5f96530ea)
        ;

        
    
    
            var poly_line_cf159c64b058e568f1ce3e8e6e2d842c = L.polyline(
                [[41.9107677, -87.6586189], [41.9106777, -87.6586475], [41.9106605, -87.6586527], [41.910534, -87.6586951]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4cde5c4d000cfa7684eecd6e89f888e1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_74cef960958fb04c269b2a8eed3e2c3c = $(`<div id=&quot;html_74cef960958fb04c269b2a8eed3e2c3c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 263404658 → 5493314505 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/221317664&quot; target=&quot;_blank&quot;>221317664</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>26.74111407742629</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Magnolia Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_4cde5c4d000cfa7684eecd6e89f888e1.setContent(html_74cef960958fb04c269b2a8eed3e2c3c);
            
        

        poly_line_cf159c64b058e568f1ce3e8e6e2d842c.bindPopup(popup_4cde5c4d000cfa7684eecd6e89f888e1)
        ;

        
    
    
            var poly_line_067f169f575e9e977bcd1e6cb050c5da = L.polyline(
                [[41.9107677, -87.6586189], [41.9107804, -87.6575889], [41.9107993, -87.6560468], [41.9108041, -87.655697]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9ca256e8e2cc11e950b49f65070efb54 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d96c58c00bfce02dbe1cef084c57e2de = $(`<div id=&quot;html_d96c58c00bfce02dbe1cef084c57e2de&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 263404658 → 11891975142 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1281243521&quot; target=&quot;_blank&quot;>1281243521</a>, <a href=&quot;https://www.openstreetmap.org/way/1281243523&quot; target=&quot;_blank&quot;>1281243523</a>, <a href=&quot;https://www.openstreetmap.org/way/1281243525&quot; target=&quot;_blank&quot;>1281243525</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>bridge</td><td style='padding:2px 6px;'>yes</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>primary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>241.82057557806445</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West North Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>ref</td><td style='padding:2px 6px;'>IL 64</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_9ca256e8e2cc11e950b49f65070efb54.setContent(html_d96c58c00bfce02dbe1cef084c57e2de);
            
        

        poly_line_067f169f575e9e977bcd1e6cb050c5da.bindPopup(popup_9ca256e8e2cc11e950b49f65070efb54)
        ;

        
    
    
            var poly_line_2c43af4ad711140b729b4a9a04b16619 = L.polyline(
                [[41.9108263, -87.6540839], [41.9107509, -87.6540214], [41.9104717, -87.6537879]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_62265eb93efae6d1c69f3c70d8017886 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d6fbca78cc6c6e0b74a8c5177e2153b3 = $(`<div id=&quot;html_d6fbca78cc6c6e0b74a8c5177e2153b3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 263983398 → 2168537865 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273622070&quot; target=&quot;_blank&quot;>273622070</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>46.418409885750435</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_62265eb93efae6d1c69f3c70d8017886.setContent(html_d6fbca78cc6c6e0b74a8c5177e2153b3);
            
        

        poly_line_2c43af4ad711140b729b4a9a04b16619.bindPopup(popup_62265eb93efae6d1c69f3c70d8017886)
        ;

        
    
    
            var poly_line_eb9c36f819854378e87b2633ed5102ff = L.polyline(
                [[41.9108263, -87.6540839], [41.9108296, -87.6539403], [41.9108373, -87.6536017]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_dfe8c9e90ba3553b4a34121168101f3a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1cc3082f6e9eb5fc7e1ffc736e903aa7 = $(`<div id=&quot;html_1cc3082f6e9eb5fc7e1ffc736e903aa7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 263983398 → 11891975132 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1281243518&quot; target=&quot;_blank&quot;>1281243518</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>primary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>39.92066980391235</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West North Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>ref</td><td style='padding:2px 6px;'>IL 64</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_dfe8c9e90ba3553b4a34121168101f3a.setContent(html_1cc3082f6e9eb5fc7e1ffc736e903aa7);
            
        

        poly_line_eb9c36f819854378e87b2633ed5102ff.bindPopup(popup_dfe8c9e90ba3553b4a34121168101f3a)
        ;

        
    
    
            var poly_line_167cbd5eb56b670a2d460f378ad067d6 = L.polyline(
                [[41.9108263, -87.6540839], [41.9108246, -87.6542088], [41.9108114, -87.6551662]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d5e989e333e75b234e1645c5865f1844 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_375460bc19b62cd0ed7fb44c1650f40f = $(`<div id=&quot;html_375460bc19b62cd0ed7fb44c1650f40f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 263983398 → 12195807187 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1281243521&quot; target=&quot;_blank&quot;>1281243521</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>primary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>89.57539040494842</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West North Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>ref</td><td style='padding:2px 6px;'>IL 64</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_d5e989e333e75b234e1645c5865f1844.setContent(html_375460bc19b62cd0ed7fb44c1650f40f);
            
        

        poly_line_167cbd5eb56b670a2d460f378ad067d6.bindPopup(popup_d5e989e333e75b234e1645c5865f1844)
        ;

        
    
    
            var poly_line_e432923e9c787d53eb00ea5ba4771dde = L.polyline(
                [[41.9080308, -87.6455212], [41.9080955, -87.6454747]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6f654e8d396a3d013c1c9491ea99d959 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_02f45227f1544c5f8bf7bd1c1c05773d = $(`<div id=&quot;html_02f45227f1544c5f8bf7bd1c1c05773d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 263984906 → 12049414914 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230246636&quot; target=&quot;_blank&quot;>230246636</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>8.158774587270683</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Ogden Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_6f654e8d396a3d013c1c9491ea99d959.setContent(html_02f45227f1544c5f8bf7bd1c1c05773d);
            
        

        poly_line_e432923e9c787d53eb00ea5ba4771dde.bindPopup(popup_6f654e8d396a3d013c1c9491ea99d959)
        ;

        
    
    
            var poly_line_ff073a137b9e410fe02231c1b6e4ba47 = L.polyline(
                [[41.9080308, -87.6455212], [41.9079757, -87.6454436], [41.9077148, -87.645076], [41.9075847, -87.6448928], [41.9075642, -87.6448639]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_db0e4cffc64dfe6441dd56466949f136 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e5fbc530636b24eba8aa5ca7a2f5ba8e = $(`<div id=&quot;html_e5fbc530636b24eba8aa5ca7a2f5ba8e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 263984906 → 12049414904 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435397257&quot; target=&quot;_blank&quot;>435397257</a>, <a href=&quot;https://www.openstreetmap.org/way/1300921641&quot; target=&quot;_blank&quot;>1300921641</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>3</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>75.17058731039182</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Clybourn Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_db0e4cffc64dfe6441dd56466949f136.setContent(html_e5fbc530636b24eba8aa5ca7a2f5ba8e);
            
        

        poly_line_ff073a137b9e410fe02231c1b6e4ba47.bindPopup(popup_db0e4cffc64dfe6441dd56466949f136)
        ;

        
    
    
            var poly_line_b95d965691a17a1cf5fd4096124c0461 = L.polyline(
                [[41.9080308, -87.6455212], [41.9079605, -87.6455794], [41.9075558, -87.6459145]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_47b2397aea3580223b48307ee3bfef56 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_aef529c63f050cf43b4a4391160ac7e7 = $(`<div id=&quot;html_aef529c63f050cf43b4a4391160ac7e7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 263984906 → 4131053950 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/616876452&quot; target=&quot;_blank&quot;>616876452</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>62.040426020120464</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Ogden Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_47b2397aea3580223b48307ee3bfef56.setContent(html_aef529c63f050cf43b4a4391160ac7e7);
            
        

        poly_line_b95d965691a17a1cf5fd4096124c0461.bindPopup(popup_47b2397aea3580223b48307ee3bfef56)
        ;

        
    
    
            var poly_line_67957f8388e2b1306fa923056b39daf4 = L.polyline(
                [[41.9080308, -87.6455212], [41.9080479, -87.6455449], [41.9080692, -87.6455746], [41.908191, -87.6457438], [41.9083708, -87.6459937]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_92aee2f3f3babf5e852572c765f08214 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c047195f778e1b95b8f247c2ec5acfce = $(`<div id=&quot;html_c047195f778e1b95b8f247c2ec5acfce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 263984906 → 12049414903 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1300921640&quot; target=&quot;_blank&quot;>1300921640</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>54.38930968762526</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Clybourn Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_92aee2f3f3babf5e852572c765f08214.setContent(html_c047195f778e1b95b8f247c2ec5acfce);
            
        

        poly_line_67957f8388e2b1306fa923056b39daf4.bindPopup(popup_92aee2f3f3babf5e852572c765f08214)
        ;

        
    
    
            var poly_line_34bdb46062344c4d868e75368f5a9a26 = L.polyline(
                [[41.9096657, -87.6477929], [41.9093373, -87.6473408]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_94cf2a6c3ef181815c7e2bb815f7e343 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8a9867096a9113ed464ad6d62fcde530 = $(`<div id=&quot;html_8a9867096a9113ed464ad6d62fcde530&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 263985031 → 12049414896 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1300921636&quot; target=&quot;_blank&quot;>1300921636</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>52.27911091898407</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Clybourn Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_94cf2a6c3ef181815c7e2bb815f7e343.setContent(html_8a9867096a9113ed464ad6d62fcde530);
            
        

        poly_line_34bdb46062344c4d868e75368f5a9a26.bindPopup(popup_94cf2a6c3ef181815c7e2bb815f7e343)
        ;

        
    
    
            var poly_line_c02633af97359be3521b607c5468a9db = L.polyline(
                [[41.9096657, -87.6477929], [41.9097326, -87.6477111], [41.9098956, -87.647507]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8c46c7d910e39431162e403c9db7740c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a1f1e64a8adf1c61fc091ce8f46a5f92 = $(`<div id=&quot;html_a1f1e64a8adf1c61fc091ce8f46a5f92&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 263985031 → 5235039325 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24083760&quot; target=&quot;_blank&quot;>24083760</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>34.831980449569954</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Weed Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_8c46c7d910e39431162e403c9db7740c.setContent(html_a1f1e64a8adf1c61fc091ce8f46a5f92);
            
        

        poly_line_c02633af97359be3521b607c5468a9db.bindPopup(popup_8c46c7d910e39431162e403c9db7740c)
        ;

        
    
    
            var poly_line_2da0520c4cb0f0961a2e90b0ca0ca1e1 = L.polyline(
                [[41.9096657, -87.6477929], [41.9099323, -87.6481419], [41.9100134, -87.648257]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a8bdc4f87b5513bf4dc1ccfb9924efa7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_dec688f5997de1953b82fb481ab8a5d7 = $(`<div id=&quot;html_dec688f5997de1953b82fb481ab8a5d7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 263985031 → 102708202 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/488116313&quot; target=&quot;_blank&quot;>488116313</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>5</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>54.5032229754977</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Clybourn Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_a8bdc4f87b5513bf4dc1ccfb9924efa7.setContent(html_dec688f5997de1953b82fb481ab8a5d7);
            
        

        poly_line_2da0520c4cb0f0961a2e90b0ca0ca1e1.bindPopup(popup_a8bdc4f87b5513bf4dc1ccfb9924efa7)
        ;

        
    
    
            var poly_line_73945b8c8c88326c5c0b93bea186d6a1 = L.polyline(
                [[41.9072578, -87.6463921], [41.9072454, -87.6472997], [41.9072444, -87.6473763], [41.9067547, -87.6473594]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6e6521e8f511dffbbc95d97cf64aaa7a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_49b32e5cd60db7b1dcb44752e79b0766 = $(`<div id=&quot;html_49b32e5cd60db7b1dcb44752e79b0766&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 264431790 → 261318537 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/80207802&quot; target=&quot;_blank&quot;>80207802</a>, <a href=&quot;https://www.openstreetmap.org/way/608424116&quot; target=&quot;_blank&quot;>608424116</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>['residential', 'service']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>135.930686805563</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>['North Burling Street', 'West Schiller Street']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_6e6521e8f511dffbbc95d97cf64aaa7a.setContent(html_49b32e5cd60db7b1dcb44752e79b0766);
            
        

        poly_line_73945b8c8c88326c5c0b93bea186d6a1.bindPopup(popup_6e6521e8f511dffbbc95d97cf64aaa7a)
        ;

        
    
    
            var poly_line_4ebbde48de589257a13e1e7ad094e676 = L.polyline(
                [[41.9067461, -87.6481654], [41.9067473, -87.6480513], [41.9067538, -87.6474399], [41.9067547, -87.6473594]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1626aab2fc9d9f515d0c71029848d669 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b79c4c5486aaf904fcc34f189ac082c7 = $(`<div id=&quot;html_b79c4c5486aaf904fcc34f189ac082c7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 264431868 → 261318537 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24108123&quot; target=&quot;_blank&quot;>24108123</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>66.70741480864956</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Fair Place</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_1626aab2fc9d9f515d0c71029848d669.setContent(html_b79c4c5486aaf904fcc34f189ac082c7);
            
        

        poly_line_4ebbde48de589257a13e1e7ad094e676.bindPopup(popup_1626aab2fc9d9f515d0c71029848d669)
        ;

        
    
    
            var poly_line_66722cf0559f8c468fd721221da7a549 = L.polyline(
                [[41.9067461, -87.6481654], [41.9072306, -87.6481775], [41.9074042, -87.6481819], [41.9074706, -87.6481841]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_540db2bf82be6aee326a3930d13a94bb = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e1c0e4d06ef53de1d7fee7e0e707a2c9 = $(`<div id=&quot;html_e1c0e4d06ef53de1d7fee7e0e707a2c9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 264431868 → 262368739 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1101320096&quot; target=&quot;_blank&quot;>1101320096</a>, <a href=&quot;https://www.openstreetmap.org/way/488118938&quot; target=&quot;_blank&quot;>488118938</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>3</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>80.57582114126511</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Halsted Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_540db2bf82be6aee326a3930d13a94bb.setContent(html_e1c0e4d06ef53de1d7fee7e0e707a2c9);
            
        

        poly_line_66722cf0559f8c468fd721221da7a549.bindPopup(popup_540db2bf82be6aee326a3930d13a94bb)
        ;

        
    
    
            var poly_line_9c92e002e81ca53cb8eac3c8f6448184 = L.polyline(
                [[41.9067461, -87.6481654], [41.9065232, -87.6481601], [41.9064621, -87.6481586], [41.9063797, -87.6481566]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_123e887c72cc7ef2bae61efa3cdddd50 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_142a2601cee5c315f7468c28ebfbdf47 = $(`<div id=&quot;html_142a2601cee5c315f7468c28ebfbdf47&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 264431868 → 264431935 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316473818&quot; target=&quot;_blank&quot;>1316473818</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>40.74838782155492</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Halsted Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_123e887c72cc7ef2bae61efa3cdddd50.setContent(html_142a2601cee5c315f7468c28ebfbdf47);
            
        

        poly_line_9c92e002e81ca53cb8eac3c8f6448184.bindPopup(popup_123e887c72cc7ef2bae61efa3cdddd50)
        ;

        
    
    
            var poly_line_dea60dae23ba2b08f75d487a8b40df06 = L.polyline(
                [[41.9063797, -87.6481566], [41.9063787, -87.6482661], [41.9063741, -87.6487685]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b4275313fabb8afd53c72c39ae7cc721 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9b0bbc5edcdcdb2b39c2b0a5b3b33987 = $(`<div id=&quot;html_9b0bbc5edcdcdb2b39c2b0a5b3b33987&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 264431935 → 2401648266 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/80207804&quot; target=&quot;_blank&quot;>80207804</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>50.641930680320954</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Evergreen Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_b4275313fabb8afd53c72c39ae7cc721.setContent(html_9b0bbc5edcdcdb2b39c2b0a5b3b33987);
            
        

        poly_line_dea60dae23ba2b08f75d487a8b40df06.bindPopup(popup_b4275313fabb8afd53c72c39ae7cc721)
        ;

        
    
    
            var poly_line_e110fc4a7078d6672e0b165051e481d2 = L.polyline(
                [[41.9063797, -87.6481566], [41.9063054, -87.6481548], [41.9062597, -87.6481537], [41.905038, -87.6481242]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9fbc1e79aa8d3a607768c575313838de = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_51fcc2b57bbb93b76054c8680b137845 = $(`<div id=&quot;html_51fcc2b57bbb93b76054c8680b137845&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 264431935 → 4043041910 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/253740820&quot; target=&quot;_blank&quot;>253740820</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>149.21453663883014</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Halsted Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_9fbc1e79aa8d3a607768c575313838de.setContent(html_51fcc2b57bbb93b76054c8680b137845);
            
        

        poly_line_e110fc4a7078d6672e0b165051e481d2.bindPopup(popup_9fbc1e79aa8d3a607768c575313838de)
        ;

        
    
    
            var poly_line_df4b42755d3363f26edcaba164ecb3c7 = L.polyline(
                [[41.9063797, -87.6481566], [41.9064621, -87.6481586], [41.9065232, -87.6481601], [41.9067461, -87.6481654]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3fb36f67f5580d3a1e6f4cbe29550a60 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_70b177b247ea845a231c01bddf6091ba = $(`<div id=&quot;html_70b177b247ea845a231c01bddf6091ba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 264431935 → 264431868 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316473818&quot; target=&quot;_blank&quot;>1316473818</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>40.74838782155492</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Halsted Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_3fb36f67f5580d3a1e6f4cbe29550a60.setContent(html_70b177b247ea845a231c01bddf6091ba);
            
        

        poly_line_df4b42755d3363f26edcaba164ecb3c7.bindPopup(popup_3fb36f67f5580d3a1e6f4cbe29550a60)
        ;

        
    
    
            var poly_line_4ebf7d464eec321b7af210d2e332d379 = L.polyline(
                [[41.9063797, -87.6481566], [41.9063812, -87.6480419], [41.9063869, -87.6475888], [41.906388, -87.6475061]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a13dfb89a589f2dbce7c05c1dde93496 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0bfcc09ee560af9b3fb7313617fd199d = $(`<div id=&quot;html_0bfcc09ee560af9b3fb7313617fd199d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 264431935 → 935894905 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316473819&quot; target=&quot;_blank&quot;>1316473819</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>53.84037398899579</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Evergreen Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_a13dfb89a589f2dbce7c05c1dde93496.setContent(html_0bfcc09ee560af9b3fb7313617fd199d);
            
        

        poly_line_4ebf7d464eec321b7af210d2e332d379.bindPopup(popup_a13dfb89a589f2dbce7c05c1dde93496)
        ;

        
    
    
            var poly_line_1a44193cf4c5f1aa3bf75d01441dcb66 = L.polyline(
                [[41.9036014, -87.6509581], [41.9035997, -87.6510759], [41.9035818, -87.6522812]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_466ca4ca0fa890df375ebd3d21df6516 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_cf1fc7a331dbfbb9bd91a1defd8f6779 = $(`<div id=&quot;html_cf1fc7a331dbfbb9bd91a1defd8f6779&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 264432667 → 5493314572 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24372007&quot; target=&quot;_blank&quot;>24372007</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>109.52029279285718</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_466ca4ca0fa890df375ebd3d21df6516.setContent(html_cf1fc7a331dbfbb9bd91a1defd8f6779);
            
        

        poly_line_1a44193cf4c5f1aa3bf75d01441dcb66.bindPopup(popup_466ca4ca0fa890df375ebd3d21df6516)
        ;

        
    
    
            var poly_line_e3ae4d2dbd472cede298f51f934b752a = L.polyline(
                [[41.9036014, -87.6509581], [41.9036032, -87.6508363], [41.9036041, -87.6507677]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_905e63fa45a6fe9328d86d2b510a4b95 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0d7a77b7ac9b57628469a596cb59e772 = $(`<div id=&quot;html_0d7a77b7ac9b57628469a596cb59e772&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 264432667 → 12183208897 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24372007&quot; target=&quot;_blank&quot;>24372007</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>15.760204391784297</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_905e63fa45a6fe9328d86d2b510a4b95.setContent(html_0d7a77b7ac9b57628469a596cb59e772);
            
        

        poly_line_e3ae4d2dbd472cede298f51f934b752a.bindPopup(popup_905e63fa45a6fe9328d86d2b510a4b95)
        ;

        
    
    
            var poly_line_131d3d7358bcd1f6bdf8041b8dfd10d2 = L.polyline(
                [[41.9036014, -87.6509581], [41.9034862, -87.6508668], [41.9031769, -87.6506105], [41.9027467, -87.6502541]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a9d9ca93fa32e03b1e7b86187948d7e2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_01dabadad483d2be6a6151814cf0186d = $(`<div id=&quot;html_01dabadad483d2be6a6151814cf0186d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 264432667 → 2168537800 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1125567618&quot; target=&quot;_blank&quot;>1125567618</a>, <a href=&quot;https://www.openstreetmap.org/way/24372003&quot; target=&quot;_blank&quot;>24372003</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>111.47831330651628</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Hooker Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_a9d9ca93fa32e03b1e7b86187948d7e2.setContent(html_01dabadad483d2be6a6151814cf0186d);
            
        

        poly_line_131d3d7358bcd1f6bdf8041b8dfd10d2.bindPopup(popup_a9d9ca93fa32e03b1e7b86187948d7e2)
        ;

        
    
    
            var poly_line_7ca1ce494b1f769e2513204bb1a16961 = L.polyline(
                [[41.9036014, -87.6509581], [41.9036871, -87.6510328], [41.9041105, -87.6513816], [41.904259, -87.651504]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3de5bc9b85d45dab6571506d4108aa4c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_bdc9968a9319a29ec42c803485ba1dc6 = $(`<div id=&quot;html_bdc9968a9319a29ec42c803485ba1dc6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 264432667 → 5493314586 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1125567619&quot; target=&quot;_blank&quot;>1125567619</a>, <a href=&quot;https://www.openstreetmap.org/way/1125567620&quot; target=&quot;_blank&quot;>1125567620</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>85.95584020615587</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Hooker Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_3de5bc9b85d45dab6571506d4108aa4c.setContent(html_bdc9968a9319a29ec42c803485ba1dc6);
            
        

        poly_line_7ca1ce494b1f769e2513204bb1a16961.bindPopup(popup_3de5bc9b85d45dab6571506d4108aa4c)
        ;

        
    
    
            var poly_line_b25f6ba379189168b26750ad8944b61f = L.polyline(
                [[41.9098701, -87.6482517], [41.9100134, -87.648257]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_28d4e6cb1e69d9db0e1cd3d9d08d99fe = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_943f29ddcd98dc742ea38e345edc3299 = $(`<div id=&quot;html_943f29ddcd98dc742ea38e345edc3299&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 265642209 → 102708202 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435397270&quot; target=&quot;_blank&quot;>435397270</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>15.94029016259574</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Halsted Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_28d4e6cb1e69d9db0e1cd3d9d08d99fe.setContent(html_943f29ddcd98dc742ea38e345edc3299);
            
        

        poly_line_b25f6ba379189168b26750ad8944b61f.bindPopup(popup_28d4e6cb1e69d9db0e1cd3d9d08d99fe)
        ;

        
    
    
            var poly_line_f0bad3cb1a232b5741569b151d21b7f7 = L.polyline(
                [[41.9098701, -87.6482517], [41.9098675, -87.6483611], [41.9098603, -87.6488569]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_45b98da641d82b99a797b1d4c0590aa5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a21926c4cf26a49495adf8d124ac4baa = $(`<div id=&quot;html_a21926c4cf26a49495adf8d124ac4baa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 265642209 → 2401648236 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24083758&quot; target=&quot;_blank&quot;>24083758</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>50.09332973537937</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Weed Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_45b98da641d82b99a797b1d4c0590aa5.setContent(html_a21926c4cf26a49495adf8d124ac4baa);
            
        

        poly_line_f0bad3cb1a232b5741569b151d21b7f7.bindPopup(popup_45b98da641d82b99a797b1d4c0590aa5)
        ;

        
    
    
            var poly_line_71338020fcd505833b3720e071ebdc4a = L.polyline(
                [[41.9098701, -87.6482517], [41.9098011, -87.6482492], [41.9095208, -87.6482419], [41.9089475, -87.6482254]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a257494263abfdbd7dd7e0b57918b8b2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_00dbe9ae99249b76ec251a8582e5f312 = $(`<div id=&quot;html_00dbe9ae99249b76ec251a8582e5f312&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 265642209 → 10941231096 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1377435753&quot; target=&quot;_blank&quot;>1377435753</a>, <a href=&quot;https://www.openstreetmap.org/way/435397270&quot; target=&quot;_blank&quot;>435397270</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>102.6118472749296</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Halsted Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_a257494263abfdbd7dd7e0b57918b8b2.setContent(html_00dbe9ae99249b76ec251a8582e5f312);
            
        

        poly_line_71338020fcd505833b3720e071ebdc4a.bindPopup(popup_a257494263abfdbd7dd7e0b57918b8b2)
        ;

        
    
    
            var poly_line_462c4be8464793ba39c1710c88f8940b = L.polyline(
                [[41.9085748, -87.6482146], [41.9085734, -87.6483281], [41.9085674, -87.6488221]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ce752cd7d21b6c1d7ee53fb6c28d84cb = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_acc1d67209408bb737d4370231cb6c24 = $(`<div id=&quot;html_acc1d67209408bb737d4370231cb6c24&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 265642220 → 2401648323 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24085262&quot; target=&quot;_blank&quot;>24085262</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>50.27898389874745</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Blackhawk Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_ce752cd7d21b6c1d7ee53fb6c28d84cb.setContent(html_acc1d67209408bb737d4370231cb6c24);
            
        

        poly_line_462c4be8464793ba39c1710c88f8940b.bindPopup(popup_ce752cd7d21b6c1d7ee53fb6c28d84cb)
        ;

        
    
    
            var poly_line_73e44899038ff0cf465b4595359d2a1f = L.polyline(
                [[41.9085748, -87.6482146], [41.9085779, -87.648106], [41.9085867, -87.647769]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fe2b81d9405f75f0d00184bce1bbf750 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4cf621d8408e1439b2ca5439df211c21 = $(`<div id=&quot;html_4cf621d8408e1439b2ca5439df211c21&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 265642220 → 4085259585 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/695036320&quot; target=&quot;_blank&quot;>695036320</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>36.898356417455226</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_fe2b81d9405f75f0d00184bce1bbf750.setContent(html_4cf621d8408e1439b2ca5439df211c21);
            
        

        poly_line_73e44899038ff0cf465b4595359d2a1f.bindPopup(popup_fe2b81d9405f75f0d00184bce1bbf750)
        ;

        
    
    
            var poly_line_a111d991ad738c477a856eb8f16db18f = L.polyline(
                [[41.9085748, -87.6482146], [41.9086582, -87.648217], [41.9087013, -87.6482182], [41.9088606, -87.6482228], [41.9088714, -87.6482231], [41.9089475, -87.6482254]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_37302c99f54cca39abc66deac79ac387 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0fb063ec64e4b83a19790b2d2318fe1c = $(`<div id=&quot;html_0fb063ec64e4b83a19790b2d2318fe1c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 265642220 → 10941231096 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1377435753&quot; target=&quot;_blank&quot;>1377435753</a>, <a href=&quot;https://www.openstreetmap.org/way/1377435754&quot; target=&quot;_blank&quot;>1377435754</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>3</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>41.45204938481358</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Halsted Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_37302c99f54cca39abc66deac79ac387.setContent(html_0fb063ec64e4b83a19790b2d2318fe1c);
            
        

        poly_line_a111d991ad738c477a856eb8f16db18f.bindPopup(popup_37302c99f54cca39abc66deac79ac387)
        ;

        
    
    
            var poly_line_b8a2b3c2cbb94831dbfb360e28164655 = L.polyline(
                [[41.9085748, -87.6482146], [41.9085027, -87.6482125], [41.9082616, -87.6482055], [41.9076397, -87.6481876], [41.9075617, -87.6481859], [41.9074706, -87.6481841]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1e9a5288142fc3685fc593162b424b54 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_560790e0f21f16b55caf21cd63113760 = $(`<div id=&quot;html_560790e0f21f16b55caf21cd63113760&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 265642220 → 262368739 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/488118937&quot; target=&quot;_blank&quot;>488118937</a>, <a href=&quot;https://www.openstreetmap.org/way/1377435755&quot; target=&quot;_blank&quot;>1377435755</a>, <a href=&quot;https://www.openstreetmap.org/way/1024669103&quot; target=&quot;_blank&quot;>1024669103</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>3</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>122.80785141436448</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Halsted Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_1e9a5288142fc3685fc593162b424b54.setContent(html_560790e0f21f16b55caf21cd63113760);
            
        

        poly_line_b8a2b3c2cbb94831dbfb360e28164655.bindPopup(popup_1e9a5288142fc3685fc593162b424b54)
        ;

        
    
    
            var poly_line_fbe0367014c424713e305788a6cbb8bf = L.polyline(
                [[41.9034918, -87.6583384], [41.9034938, -87.6582399]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3efcd1217b4739386a8a03011d9c08b6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b36ca064df1da947a8296ebe8cbee65d = $(`<div id=&quot;html_b36ca064df1da947a8296ebe8cbee65d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 344357410 → 12187280074 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820033&quot; target=&quot;_blank&quot;>1316820033</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>8.154819841534417</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_3efcd1217b4739386a8a03011d9c08b6.setContent(html_b36ca064df1da947a8296ebe8cbee65d);
            
        

        poly_line_fbe0367014c424713e305788a6cbb8bf.bindPopup(popup_3efcd1217b4739386a8a03011d9c08b6)
        ;

        
    
    
            var poly_line_113a0208f7617da1b89f59b976694f36 = L.polyline(
                [[41.9034918, -87.6583384], [41.9034896, -87.65844]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_264d6c465dc0c29c572907c6a923494e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_eb9d954c8910dbc126b68aaba2a76155 = $(`<div id=&quot;html_eb9d954c8910dbc126b68aaba2a76155&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 344357410 → 12187280099 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820034&quot; target=&quot;_blank&quot;>1316820034</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>5</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>8.411898672351805</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_264d6c465dc0c29c572907c6a923494e.setContent(html_eb9d954c8910dbc126b68aaba2a76155);
            
        

        poly_line_113a0208f7617da1b89f59b976694f36.bindPopup(popup_264d6c465dc0c29c572907c6a923494e)
        ;

        
    
    
            var poly_line_29ab590b1fa7893e7f2e89e9becfbf0b = L.polyline(
                [[41.9034918, -87.6583384], [41.9033678, -87.6582125], [41.9031652, -87.6580092]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ba46a1c8544bf0810785f0c4780b537e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7f9d5479d5ea6375c97c3ca8d34e0f61 = $(`<div id=&quot;html_7f9d5479d5ea6375c97c3ca8d34e0f61&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 344357410 → 12187280068 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435393426&quot; target=&quot;_blank&quot;>435393426</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>45.399872879436685</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_ba46a1c8544bf0810785f0c4780b537e.setContent(html_7f9d5479d5ea6375c97c3ca8d34e0f61);
            
        

        poly_line_29ab590b1fa7893e7f2e89e9becfbf0b.bindPopup(popup_ba46a1c8544bf0810785f0c4780b537e)
        ;

        
    
    
            var poly_line_c367346cc2f55eaa71dd4f0d36f5dfe1 = L.polyline(
                [[41.9034918, -87.6583384], [41.9036512, -87.658505], [41.903997, -87.6588925]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e5830507f63f671d762d9df6155073ec = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d120258f54ffbb12cacafc6078b44a27 = $(`<div id=&quot;html_d120258f54ffbb12cacafc6078b44a27&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 344357410 → 4337248984 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435831062&quot; target=&quot;_blank&quot;>435831062</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>72.52486751220242</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_e5830507f63f671d762d9df6155073ec.setContent(html_d120258f54ffbb12cacafc6078b44a27);
            
        

        poly_line_c367346cc2f55eaa71dd4f0d36f5dfe1.bindPopup(popup_e5830507f63f671d762d9df6155073ec)
        ;

        
    
    
            var poly_line_5919ef362435ea6b10bc40db9e97215f = L.polyline(
                [[41.9037161, -87.6432163], [41.9036273, -87.6432128], [41.9029267, -87.6431856]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6b379134a9f0fe2bc6ffb5aa7e43ee6f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_414e96f323f9fd42d51eb2af8783b650 = $(`<div id=&quot;html_414e96f323f9fd42d51eb2af8783b650&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 344365298 → 5149934486 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59208011&quot; target=&quot;_blank&quot;>59208011</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>87.81416273814705</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_6b379134a9f0fe2bc6ffb5aa7e43ee6f.setContent(html_414e96f323f9fd42d51eb2af8783b650);
            
        

        poly_line_5919ef362435ea6b10bc40db9e97215f.bindPopup(popup_6b379134a9f0fe2bc6ffb5aa7e43ee6f)
        ;

        
    
    
            var poly_line_cd55115e8d234145b1467f69d0af3858 = L.polyline(
                [[41.9037161, -87.6432163], [41.9037137, -87.6433383], [41.9037073, -87.643702], [41.9036986, -87.6441801], [41.9036943, -87.6444149], [41.903693, -87.6444873]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_80008af61681e55e767ade784b52b11b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3b850f659ec88aeb2f24dc4e74765f8f = $(`<div id=&quot;html_3b850f659ec88aeb2f24dc4e74765f8f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 344365298 → 345370273 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435397313&quot; target=&quot;_blank&quot;>435397313</a>, <a href=&quot;https://www.openstreetmap.org/way/435397310&quot; target=&quot;_blank&quot;>435397310</a>, <a href=&quot;https://www.openstreetmap.org/way/435397295&quot; target=&quot;_blank&quot;>435397295</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>5</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>105.21805508551195</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_80008af61681e55e767ade784b52b11b.setContent(html_3b850f659ec88aeb2f24dc4e74765f8f);
            
        

        poly_line_cd55115e8d234145b1467f69d0af3858.bindPopup(popup_80008af61681e55e767ade784b52b11b)
        ;

        
    
    
            var poly_line_3846a3315baac233501f4eda289e5030 = L.polyline(
                [[41.9037161, -87.6432163], [41.9038068, -87.6432175], [41.9040109, -87.6432245], [41.904651, -87.6432463]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_edb55d52ce3a0e448d900ab50b30dd1a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4e69bb562a4d5d936a6c65aac5b0e554 = $(`<div id=&quot;html_4e69bb562a4d5d936a6c65aac5b0e554&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 344365298 → 7757124494 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1436651323&quot; target=&quot;_blank&quot;>1436651323</a>, <a href=&quot;https://www.openstreetmap.org/way/519888263&quot; target=&quot;_blank&quot;>519888263</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>['3', '2']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>103.98702660371694</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_edb55d52ce3a0e448d900ab50b30dd1a.setContent(html_4e69bb562a4d5d936a6c65aac5b0e554);
            
        

        poly_line_3846a3315baac233501f4eda289e5030.bindPopup(popup_edb55d52ce3a0e448d900ab50b30dd1a)
        ;

        
    
    
            var poly_line_8cbd6d2da8aed776fb897ff67dcfa1b6 = L.polyline(
                [[41.903252, -87.6462929], [41.9035554, -87.6465409], [41.903586, -87.6465534], [41.9036641, -87.6465853]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_48d2319b7f1425e7cdc5e3d74ba5dba4 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_cdc0458698480fc55fc717cb997a5f1a = $(`<div id=&quot;html_cdc0458698480fc55fc717cb997a5f1a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 344531772 → 345370271 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24080413&quot; target=&quot;_blank&quot;>24080413</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>52.122408186241984</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Crosby Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_48d2319b7f1425e7cdc5e3d74ba5dba4.setContent(html_cdc0458698480fc55fc717cb997a5f1a);
            
        

        poly_line_8cbd6d2da8aed776fb897ff67dcfa1b6.bindPopup(popup_48d2319b7f1425e7cdc5e3d74ba5dba4)
        ;

        
    
    
            var poly_line_e6721647443942227bbc2dc6fa90fbb8 = L.polyline(
                [[41.903252, -87.6462929], [41.902693, -87.645812], [41.9026198, -87.645749]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7761bcb2503c0ab5c7ff996a23973eba = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7f91fd3a6dfda9d19da06adff70a3379 = $(`<div id=&quot;html_7f91fd3a6dfda9d19da06adff70a3379&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 344531772 → 3408107716 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24080413&quot; target=&quot;_blank&quot;>24080413</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>83.47410946489998</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Crosby Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_7761bcb2503c0ab5c7ff996a23973eba.setContent(html_7f91fd3a6dfda9d19da06adff70a3379);
            
        

        poly_line_e6721647443942227bbc2dc6fa90fbb8.bindPopup(popup_7761bcb2503c0ab5c7ff996a23973eba)
        ;

        
    
    
            var poly_line_95fa9ab7da1a458e85a1f08acebf5208 = L.polyline(
                [[41.903252, -87.6462929], [41.9032545, -87.6461683], [41.9032647, -87.6456494], [41.903276, -87.6450809]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e1e30f6bace60436d662a1e87f711b21 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1d8b263250d4663e233bf2bb0b7e5800 = $(`<div id=&quot;html_1d8b263250d4663e233bf2bb0b7e5800&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 344531772 → 344780920 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/30985037&quot; target=&quot;_blank&quot;>30985037</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>100.34007627473957</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_e1e30f6bace60436d662a1e87f711b21.setContent(html_1d8b263250d4663e233bf2bb0b7e5800);
            
        

        poly_line_95fa9ab7da1a458e85a1f08acebf5208.bindPopup(popup_e1e30f6bace60436d662a1e87f711b21)
        ;

        
    
    
            var poly_line_8abda134149e5f9138dadb584bfb8e96 = L.polyline(
                [[41.9032881, -87.6444687], [41.9036123, -87.6444831], [41.9036198, -87.6444834], [41.903693, -87.6444873]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d1e85b8b03510ae578a1de270225fc4d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b17967db14e369d69e2552cc26f9f104 = $(`<div id=&quot;html_b17967db14e369d69e2552cc26f9f104&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 344531869 → 345370273 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24088155&quot; target=&quot;_blank&quot;>24088155</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>45.0493486744096</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Howe Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_d1e85b8b03510ae578a1de270225fc4d.setContent(html_b17967db14e369d69e2552cc26f9f104);
            
        

        poly_line_8abda134149e5f9138dadb584bfb8e96.bindPopup(popup_d1e85b8b03510ae578a1de270225fc4d)
        ;

        
    
    
            var poly_line_4530e0dbfad63dd9c5dbf794afa42524 = L.polyline(
                [[41.9032881, -87.6444687], [41.9027078, -87.6444423], [41.902641, -87.6444393]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_612d16172cf536b32f179ed40fd4c6e0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_95883dd52e52a68b8902c752885f1a4c = $(`<div id=&quot;html_95883dd52e52a68b8902c752885f1a4c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 344531869 → 3408107712 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24088155&quot; target=&quot;_blank&quot;>24088155</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>71.99546601066245</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Howe Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_612d16172cf536b32f179ed40fd4c6e0.setContent(html_95883dd52e52a68b8902c752885f1a4c);
            
        

        poly_line_4530e0dbfad63dd9c5dbf794afa42524.bindPopup(popup_612d16172cf536b32f179ed40fd4c6e0)
        ;

        
    
    
            var poly_line_1d834e579c83839b28fc33da77ccdc82 = L.polyline(
                [[41.9032881, -87.6444687], [41.9032859, -87.6445789], [41.903276, -87.6450809]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5eefc34620bcb0ad4832c6b906d31cc2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2037f29edc6b75fa2058f2c0c1f12218 = $(`<div id=&quot;html_2037f29edc6b75fa2058f2c0c1f12218&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 344531869 → 344780920 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/30985037&quot; target=&quot;_blank&quot;>30985037</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>50.683246896924814</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_5eefc34620bcb0ad4832c6b906d31cc2.setContent(html_2037f29edc6b75fa2058f2c0c1f12218);
            
        

        poly_line_1d834e579c83839b28fc33da77ccdc82.bindPopup(popup_5eefc34620bcb0ad4832c6b906d31cc2)
        ;

        
    
    
            var poly_line_c9d3c9f0297c91cc0acebbd05db89a1a = L.polyline(
                [[41.903276, -87.6450809], [41.9032647, -87.6456494], [41.9032545, -87.6461683], [41.903252, -87.6462929]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8310b6f1cf7dd0db71f7b889c15f761c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_bc858fa7150401f1eb50f612d5c7dc14 = $(`<div id=&quot;html_bc858fa7150401f1eb50f612d5c7dc14&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 344780920 → 344531772 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/30985037&quot; target=&quot;_blank&quot;>30985037</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>100.34007627473957</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_8310b6f1cf7dd0db71f7b889c15f761c.setContent(html_bc858fa7150401f1eb50f612d5c7dc14);
            
        

        poly_line_c9d3c9f0297c91cc0acebbd05db89a1a.bindPopup(popup_8310b6f1cf7dd0db71f7b889c15f761c)
        ;

        
    
    
            var poly_line_b9b5ee13cc9392f1a773db12844405ea = L.polyline(
                [[41.903276, -87.6450809], [41.9032859, -87.6445789], [41.9032881, -87.6444687]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_44792dff17579d52179f9f0ec41ef50f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2d4cfcd0c719852e75f613ea2a4d43a3 = $(`<div id=&quot;html_2d4cfcd0c719852e75f613ea2a4d43a3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 344780920 → 344531869 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/30985037&quot; target=&quot;_blank&quot;>30985037</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>50.683246896924814</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_44792dff17579d52179f9f0ec41ef50f.setContent(html_2d4cfcd0c719852e75f613ea2a4d43a3);
            
        

        poly_line_b9b5ee13cc9392f1a773db12844405ea.bindPopup(popup_44792dff17579d52179f9f0ec41ef50f)
        ;

        
    
    
            var poly_line_4c789b779726935efe0924598370b8ba = L.polyline(
                [[41.903276, -87.6450809], [41.902697, -87.6450612], [41.9026328, -87.6450585]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_965176846556909356f67b3a1995f774 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_184847a520a257f5bffe50f0cff16056 = $(`<div id=&quot;html_184847a520a257f5bffe50f0cff16056&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 344780920 → 344780921 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/186983931&quot; target=&quot;_blank&quot;>186983931</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>71.5448141578421</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_965176846556909356f67b3a1995f774.setContent(html_184847a520a257f5bffe50f0cff16056);
            
        

        poly_line_4c789b779726935efe0924598370b8ba.bindPopup(popup_965176846556909356f67b3a1995f774)
        ;

        
    
    
            var poly_line_8f1e3974004e50d71990f2edcbca9b1f = L.polyline(
                [[41.9026328, -87.6450585], [41.9026222, -87.6456205], [41.9026218, -87.6456427], [41.9026198, -87.645749]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_249dc43f6b70e8746a093a4deb9c5b77 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d8de8bd3f1fca73a3d4922b5b1acec05 = $(`<div id=&quot;html_d8de8bd3f1fca73a3d4922b5b1acec05&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 344780921 → 3408107716 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/31695399&quot; target=&quot;_blank&quot;>31695399</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>57.16432386787182</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Elm Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_249dc43f6b70e8746a093a4deb9c5b77.setContent(html_d8de8bd3f1fca73a3d4922b5b1acec05);
            
        

        poly_line_8f1e3974004e50d71990f2edcbca9b1f.bindPopup(popup_249dc43f6b70e8746a093a4deb9c5b77)
        ;

        
    
    
            var poly_line_c5d9d9c40e346119ec3eb0034fa9a854 = L.polyline(
                [[41.9026328, -87.6450585], [41.9026393, -87.6445663], [41.902641, -87.6444393]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_56ccd45d64a8dab58fbb7f4fcdac848b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_234087d0ec13b568465da37b2b5d32cc = $(`<div id=&quot;html_234087d0ec13b568465da37b2b5d32cc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 344780921 → 3408107712 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/31695399&quot; target=&quot;_blank&quot;>31695399</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>51.25333061678566</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Elm Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_56ccd45d64a8dab58fbb7f4fcdac848b.setContent(html_234087d0ec13b568465da37b2b5d32cc);
            
        

        poly_line_c5d9d9c40e346119ec3eb0034fa9a854.bindPopup(popup_56ccd45d64a8dab58fbb7f4fcdac848b)
        ;

        
    
    
            var poly_line_a22c4a17ec82b00c92aa74bb504c8c6c = L.polyline(
                [[41.9026328, -87.6450585], [41.902697, -87.6450612], [41.903276, -87.6450809]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_758bb7d74692acbe961064d31b08539c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2a52625aade2fbc87ee00467e0b0a5f2 = $(`<div id=&quot;html_2a52625aade2fbc87ee00467e0b0a5f2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 344780921 → 344780920 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/186983931&quot; target=&quot;_blank&quot;>186983931</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>71.5448141578421</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_758bb7d74692acbe961064d31b08539c.setContent(html_2a52625aade2fbc87ee00467e0b0a5f2);
            
        

        poly_line_a22c4a17ec82b00c92aa74bb504c8c6c.bindPopup(popup_758bb7d74692acbe961064d31b08539c)
        ;

        
    
    
            var poly_line_2230b00f7ed88395c76ec207fc5554f5 = L.polyline(
                [[41.902203, -87.6454173], [41.9015569, -87.6449106]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2422907006d09a7decbeb11d009fb608 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0510998c6d04449f3b22f52014069cd2 = $(`<div id=&quot;html_0510998c6d04449f3b22f52014069cd2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 344780925 → 12182779423 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24080413&quot; target=&quot;_blank&quot;>24080413</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>83.18651447445774</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Crosby Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_2422907006d09a7decbeb11d009fb608.setContent(html_0510998c6d04449f3b22f52014069cd2);
            
        

        poly_line_2230b00f7ed88395c76ec207fc5554f5.bindPopup(popup_2422907006d09a7decbeb11d009fb608)
        ;

        
    
    
            var poly_line_6319bf2a4f6c864cce436d72b0aaf1c1 = L.polyline(
                [[41.902203, -87.6454173], [41.9025178, -87.6456678], [41.9026198, -87.645749]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a614cdcf2ae15454281b19706e43fe93 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ad88d524046eb7d44851cca5201dd1af = $(`<div id=&quot;html_ad88d524046eb7d44851cca5201dd1af&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 344780925 → 3408107716 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24080413&quot; target=&quot;_blank&quot;>24080413</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>53.86611580536335</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Crosby Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_a614cdcf2ae15454281b19706e43fe93.setContent(html_ad88d524046eb7d44851cca5201dd1af);
            
        

        poly_line_6319bf2a4f6c864cce436d72b0aaf1c1.bindPopup(popup_a614cdcf2ae15454281b19706e43fe93)
        ;

        
    
    
            var poly_line_a5fb52df11366947ad093c6a8068fd45 = L.polyline(
                [[41.902203, -87.6454173], [41.9022043, -87.6452959], [41.9022112, -87.6449188], [41.9022194, -87.6444636], [41.9015334, -87.6444431], [41.9014593, -87.644435]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b4344ccbda8b5e1f73cfd2a82696803e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_58b6247ed28e2d522904779839959c6d = $(`<div id=&quot;html_58b6247ed28e2d522904779839959c6d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 344780925 → 3408107715 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/519888256&quot; target=&quot;_blank&quot;>519888256</a>, <a href=&quot;https://www.openstreetmap.org/way/31007558&quot; target=&quot;_blank&quot;>31007558</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>163.5160650947996</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_b4344ccbda8b5e1f73cfd2a82696803e.setContent(html_58b6247ed28e2d522904779839959c6d);
            
        

        poly_line_a5fb52df11366947ad093c6a8068fd45.bindPopup(popup_b4344ccbda8b5e1f73cfd2a82696803e)
        ;

        
    
    
            var poly_line_aeb6f86f885580ac4baf56f76c2fe67e = L.polyline(
                [[41.9036641, -87.6465853], [41.9036554, -87.6471759]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4c523bc84d1f6b50052cf391e82066da = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f31d3b1b3b87e9d3471a657cd16adb8b = $(`<div id=&quot;html_f31d3b1b3b87e9d3471a657cd16adb8b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 345370271 → 9987432812 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435397327&quot; target=&quot;_blank&quot;>435397327</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>48.887062306287376</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_4c523bc84d1f6b50052cf391e82066da.setContent(html_f31d3b1b3b87e9d3471a657cd16adb8b);
            
        

        poly_line_aeb6f86f885580ac4baf56f76c2fe67e.bindPopup(popup_4c523bc84d1f6b50052cf391e82066da)
        ;

        
    
    
            var poly_line_78deb234e83b7586558fa183023a4883 = L.polyline(
                [[41.9036641, -87.6465853], [41.903586, -87.6465534], [41.9035554, -87.6465409], [41.903252, -87.6462929]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_802895f6473e22344689143f65e4f92d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9c6d77dba37294e0ddbab1295faf5890 = $(`<div id=&quot;html_9c6d77dba37294e0ddbab1295faf5890&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 345370271 → 344531772 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24080413&quot; target=&quot;_blank&quot;>24080413</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>52.12240818624198</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Crosby Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_802895f6473e22344689143f65e4f92d.setContent(html_9c6d77dba37294e0ddbab1295faf5890);
            
        

        poly_line_78deb234e83b7586558fa183023a4883.bindPopup(popup_802895f6473e22344689143f65e4f92d)
        ;

        
    
    
            var poly_line_14452883dcfa353ed3adc02d00c4d5bb = L.polyline(
                [[41.9036641, -87.6465853], [41.9036654, -87.6464945], [41.9036812, -87.6453441], [41.9036872, -87.644907]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9d084fd113c7d4c573d9905292e4300c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7f921e3387a42aca47d4c088a265c6aa = $(`<div id=&quot;html_7f921e3387a42aca47d4c088a265c6aa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 345370271 → 4333091844 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435397298&quot; target=&quot;_blank&quot;>435397298</a>, <a href=&quot;https://www.openstreetmap.org/way/435397327&quot; target=&quot;_blank&quot;>435397327</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>5</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>138.9182152979461</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_9d084fd113c7d4c573d9905292e4300c.setContent(html_7f921e3387a42aca47d4c088a265c6aa);
            
        

        poly_line_14452883dcfa353ed3adc02d00c4d5bb.bindPopup(popup_9d084fd113c7d4c573d9905292e4300c)
        ;

        
    
    
            var poly_line_2490c31325d771647da29c61d1cca994 = L.polyline(
                [[41.903693, -87.6444873], [41.9036872, -87.644907]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2df190c14b7ceeea42c06006d67d60a9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ac86810453945746141a02ce6ef2cec7 = $(`<div id=&quot;html_ac86810453945746141a02ce6ef2cec7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 345370273 → 4333091844 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435397307&quot; target=&quot;_blank&quot;>435397307</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>34.739940037584915</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_2df190c14b7ceeea42c06006d67d60a9.setContent(html_ac86810453945746141a02ce6ef2cec7);
            
        

        poly_line_2490c31325d771647da29c61d1cca994.bindPopup(popup_2df190c14b7ceeea42c06006d67d60a9)
        ;

        
    
    
            var poly_line_e42a0f3d39042e40434c84aa46f93360 = L.polyline(
                [[41.903693, -87.6444873], [41.9036198, -87.6444834], [41.9036123, -87.6444831], [41.9032881, -87.6444687]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_77e03dd9b1e81bc486c35050992b5a6e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f78a6fb5eb60ff0f24072fefbae4135a = $(`<div id=&quot;html_f78a6fb5eb60ff0f24072fefbae4135a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 345370273 → 344531869 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24088155&quot; target=&quot;_blank&quot;>24088155</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>45.0493486744096</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Howe Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_77e03dd9b1e81bc486c35050992b5a6e.setContent(html_f78a6fb5eb60ff0f24072fefbae4135a);
            
        

        poly_line_e42a0f3d39042e40434c84aa46f93360.bindPopup(popup_77e03dd9b1e81bc486c35050992b5a6e)
        ;

        
    
    
            var poly_line_afd3730afeaba832097befeb6c5532d8 = L.polyline(
                [[41.903693, -87.6444873], [41.9036943, -87.6444149], [41.9036986, -87.6441801], [41.9037073, -87.643702], [41.9037137, -87.6433383], [41.9037161, -87.6432163]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_cae50846ce8da051733ee6ebd39a0a73 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1c0a9de21664a248073acd6ef0efb931 = $(`<div id=&quot;html_1c0a9de21664a248073acd6ef0efb931&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 345370273 → 344365298 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435397313&quot; target=&quot;_blank&quot;>435397313</a>, <a href=&quot;https://www.openstreetmap.org/way/435397310&quot; target=&quot;_blank&quot;>435397310</a>, <a href=&quot;https://www.openstreetmap.org/way/435397295&quot; target=&quot;_blank&quot;>435397295</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>5</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>105.21805508551196</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_cae50846ce8da051733ee6ebd39a0a73.setContent(html_1c0a9de21664a248073acd6ef0efb931);
            
        

        poly_line_afd3730afeaba832097befeb6c5532d8.bindPopup(popup_cae50846ce8da051733ee6ebd39a0a73)
        ;

        
    
    
            var poly_line_600beb019247519a17b09493e285f733 = L.polyline(
                [[41.9050111, -87.6473156], [41.905028, -87.6458237]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6059d699bb0b5742e2f99c75af65bf1c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0a970a1894cc38b8744eecef8f76b803 = $(`<div id=&quot;html_0a970a1894cc38b8744eecef8f76b803&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 353799889 → 6782716242 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59586637&quot; target=&quot;_blank&quot;>59586637</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>123.47988428219182</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Scott Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_6059d699bb0b5742e2f99c75af65bf1c.setContent(html_0a970a1894cc38b8744eecef8f76b803);
            
        

        poly_line_600beb019247519a17b09493e285f733.bindPopup(popup_6059d699bb0b5742e2f99c75af65bf1c)
        ;

        
    
    
            var poly_line_518a4605bd40f0ad114e42ffa6bcca96 = L.polyline(
                [[41.9050111, -87.6473156], [41.9050851, -87.6473177], [41.9053191, -87.6473247]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_720ca7a3931c5386875ced1d39552ba6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_564275e96e17c346ccb88b34b6c13349 = $(`<div id=&quot;html_564275e96e17c346ccb88b34b6c13349&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 353799889 → 10264704019 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24099035&quot; target=&quot;_blank&quot;>24099035</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>34.25636880262152</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Burling Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_720ca7a3931c5386875ced1d39552ba6.setContent(html_564275e96e17c346ccb88b34b6c13349);
            
        

        poly_line_518a4605bd40f0ad114e42ffa6bcca96.bindPopup(popup_720ca7a3931c5386875ced1d39552ba6)
        ;

        
    
    
            var poly_line_d23d920b4b58ec285561fee672d3f558 = L.polyline(
                [[41.9050111, -87.6473156], [41.9050101, -87.6473932], [41.9050053, -87.6477845]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a97e68d5bfafaaaf08aa5795445ef95b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_82d8ea044c75c8209295767a74ac25de = $(`<div id=&quot;html_82d8ea044c75c8209295767a74ac25de&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 353799889 → 353809242 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59586637&quot; target=&quot;_blank&quot;>59586637</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>38.81025569503599</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Scott Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_a97e68d5bfafaaaf08aa5795445ef95b.setContent(html_82d8ea044c75c8209295767a74ac25de);
            
        

        poly_line_d23d920b4b58ec285561fee672d3f558.bindPopup(popup_a97e68d5bfafaaaf08aa5795445ef95b)
        ;

        
    
    
            var poly_line_d03275f8d3453d4c8c90d5a16818af80 = L.polyline(
                [[41.90128, -87.6451029], [41.9009407, -87.6458147]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9deb337e3e6a7e65fac6470d32393623 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_08ed68f901d328efc8c67118dbf569fb = $(`<div id=&quot;html_08ed68f901d328efc8c67118dbf569fb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 353804288 → 261230960 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1125567607&quot; target=&quot;_blank&quot;>1125567607</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>69.95609476195007</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Hobbie Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_9deb337e3e6a7e65fac6470d32393623.setContent(html_08ed68f901d328efc8c67118dbf569fb);
            
        

        poly_line_d03275f8d3453d4c8c90d5a16818af80.bindPopup(popup_9deb337e3e6a7e65fac6470d32393623)
        ;

        
    
    
            var poly_line_92e5c56d58725b0e9623e78552438c9c = L.polyline(
                [[41.90128, -87.6451029], [41.9013679, -87.6449106], [41.9013788, -87.6448822], [41.9014127, -87.644794]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_742cc1606ab05a622c9bd7edae83e464 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0abf024a7cad88d5098205cb78606005 = $(`<div id=&quot;html_0abf024a7cad88d5098205cb78606005&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 353804288 → 3408107714 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24118314&quot; target=&quot;_blank&quot;>24118314</a>, <a href=&quot;https://www.openstreetmap.org/way/1125567607&quot; target=&quot;_blank&quot;>1125567607</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>29.53680687798473</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Hobbie Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_742cc1606ab05a622c9bd7edae83e464.setContent(html_0abf024a7cad88d5098205cb78606005);
            
        

        poly_line_92e5c56d58725b0e9623e78552438c9c.bindPopup(popup_742cc1606ab05a622c9bd7edae83e464)
        ;

        
    
    
            var poly_line_a90af758e3bad4984d40e916908f5d0d = L.polyline(
                [[41.90128, -87.6451029], [41.9012151, -87.6450499], [41.9011984, -87.6450368], [41.9010477, -87.6449184]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fd7e8e66acd6763c37167f05ae242554 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f6d2510e82d5dc3abd00d50dd2eabd92 = $(`<div id=&quot;html_f6d2510e82d5dc3abd00d50dd2eabd92&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 353804288 → 353804290 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1146864694&quot; target=&quot;_blank&quot;>1146864694</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>30.007263035781406</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_fd7e8e66acd6763c37167f05ae242554.setContent(html_f6d2510e82d5dc3abd00d50dd2eabd92);
            
        

        poly_line_a90af758e3bad4984d40e916908f5d0d.bindPopup(popup_fd7e8e66acd6763c37167f05ae242554)
        ;

        
    
    
            var poly_line_7af6f8b13eb90765d1a26d39eb712a53 = L.polyline(
                [[41.9010477, -87.6449184], [41.9008933, -87.6447855], [41.900672, -87.6445948], [41.9004501, -87.6444037], [41.9002876, -87.6442638]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4c570f442ddb5699b447b84a7c4f3e55 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_448078622574c10a5a4e1e42d1cce585 = $(`<div id=&quot;html_448078622574c10a5a4e1e42d1cce585&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 353804290 → 353804439 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/31623024&quot; target=&quot;_blank&quot;>31623024</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>100.39238646176902</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_4c570f442ddb5699b447b84a7c4f3e55.setContent(html_448078622574c10a5a4e1e42d1cce585);
            
        

        poly_line_7af6f8b13eb90765d1a26d39eb712a53.bindPopup(popup_4c570f442ddb5699b447b84a7c4f3e55)
        ;

        
    
    
            var poly_line_bf4405c290fcaf82a8d05d9c2ef83fd8 = L.polyline(
                [[41.9010477, -87.6449184], [41.9007546, -87.6455423], [41.9007094, -87.6456276]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_71ff4019c645ee91f71048d7175c250e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_34d407f7db2f898a753f0ef9fb569e08 = $(`<div id=&quot;html_34d407f7db2f898a753f0ef9fb569e08&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 353804290 → 353804422 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/31623033&quot; target=&quot;_blank&quot;>31623033</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>69.72685472954332</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_71ff4019c645ee91f71048d7175c250e.setContent(html_34d407f7db2f898a753f0ef9fb569e08);
            
        

        poly_line_bf4405c290fcaf82a8d05d9c2ef83fd8.bindPopup(popup_71ff4019c645ee91f71048d7175c250e)
        ;

        
    
    
            var poly_line_0936528813b2299ecea86102762e245b = L.polyline(
                [[41.9010477, -87.6449184], [41.9011984, -87.6450368], [41.9012151, -87.6450499], [41.90128, -87.6451029]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_bfaab65afd4b826d09f812a225c1c63e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b2d44521284ab02eb2cc2c09617e7b5c = $(`<div id=&quot;html_b2d44521284ab02eb2cc2c09617e7b5c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 353804290 → 353804288 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1146864694&quot; target=&quot;_blank&quot;>1146864694</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>30.007263035781406</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_bfaab65afd4b826d09f812a225c1c63e.setContent(html_b2d44521284ab02eb2cc2c09617e7b5c);
            
        

        poly_line_0936528813b2299ecea86102762e245b.bindPopup(popup_bfaab65afd4b826d09f812a225c1c63e)
        ;

        
    
    
            var poly_line_e7bfa800d6bc3790695e5d0429e2eb0f = L.polyline(
                [[41.900073, -87.644079], [41.9001483, -87.6441438], [41.9001624, -87.644156], [41.9002876, -87.6442638]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1d06d18a25aad7e882f3352fd67f44e0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_94f3dc6cea89da1eb71ca8b590f79dbc = $(`<div id=&quot;html_94f3dc6cea89da1eb71ca8b590f79dbc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 353804292 → 353804439 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/31623024&quot; target=&quot;_blank&quot;>31623024</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>28.34334997264867</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_1d06d18a25aad7e882f3352fd67f44e0.setContent(html_94f3dc6cea89da1eb71ca8b590f79dbc);
            
        

        poly_line_e7bfa800d6bc3790695e5d0429e2eb0f.bindPopup(popup_1d06d18a25aad7e882f3352fd67f44e0)
        ;

        
    
    
            var poly_line_d9ab2354c1dfaa54fd657a6cd26c84a6 = L.polyline(
                [[41.900073, -87.644079], [41.9001575, -87.6439172], [41.9001791, -87.6438811], [41.9002316, -87.6437931]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_bf614139b4d14351d6797e577ab80685 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d9ebd70a0fc48f492fcc1ccec4dc246c = $(`<div id=&quot;html_d9ebd70a0fc48f492fcc1ccec4dc246c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 353804292 → 261167714 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1077476899&quot; target=&quot;_blank&quot;>1077476899</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>29.526208398160385</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Oak Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_bf614139b4d14351d6797e577ab80685.setContent(html_d9ebd70a0fc48f492fcc1ccec4dc246c);
            
        

        poly_line_d9ab2354c1dfaa54fd657a6cd26c84a6.bindPopup(popup_bf614139b4d14351d6797e577ab80685)
        ;

        
    
    
            var poly_line_650a86576c7b222bb14403ca4cb7232e = L.polyline(
                [[41.900073, -87.644079], [41.8999419, -87.6443615], [41.8997806, -87.6446959], [41.8997681, -87.6447233], [41.8997398, -87.6447901]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_16d450f8166b511cc86693294d4752c6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e181033baf57caddf29a7335907e9e12 = $(`<div id=&quot;html_e181033baf57caddf29a7335907e9e12&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 353804292 → 261230962 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1077476899&quot; target=&quot;_blank&quot;>1077476899</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>69.55410427411377</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Oak Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_16d450f8166b511cc86693294d4752c6.setContent(html_e181033baf57caddf29a7335907e9e12);
            
        

        poly_line_650a86576c7b222bb14403ca4cb7232e.bindPopup(popup_16d450f8166b511cc86693294d4752c6)
        ;

        
    
    
            var poly_line_d634523adeea7dfe5298fb999f7a0748 = L.polyline(
                [[41.9007094, -87.6456276], [41.9007546, -87.6455423], [41.9010477, -87.6449184]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2c692db58329735ce01d2799dc80b82d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_71ca71226740be5cd2f0dac3bb546491 = $(`<div id=&quot;html_71ca71226740be5cd2f0dac3bb546491&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 353804422 → 353804290 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/31623033&quot; target=&quot;_blank&quot;>31623033</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>69.72685472954332</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_2c692db58329735ce01d2799dc80b82d.setContent(html_71ca71226740be5cd2f0dac3bb546491);
            
        

        poly_line_d634523adeea7dfe5298fb999f7a0748.bindPopup(popup_2c692db58329735ce01d2799dc80b82d)
        ;

        
    
    
            var poly_line_396cc6a05e93c56ced1f1e07b0e18330 = L.polyline(
                [[41.9007094, -87.6456276], [41.9006729, -87.6456975], [41.9005696, -87.6458954]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b86295515fde53ce68d6a2633927c508 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b5e593cdbebf781fc4e6dc6b5a0fb821 = $(`<div id=&quot;html_b5e593cdbebf781fc4e6dc6b5a0fb821&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 353804422 → 1977388033 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/31623033&quot; target=&quot;_blank&quot;>31623033</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>27.071915721315026</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_b86295515fde53ce68d6a2633927c508.setContent(html_b5e593cdbebf781fc4e6dc6b5a0fb821);
            
        

        poly_line_396cc6a05e93c56ced1f1e07b0e18330.bindPopup(popup_b86295515fde53ce68d6a2633927c508)
        ;

        
    
    
            var poly_line_42ab9cfa61d5eb561942ed98a9db4707 = L.polyline(
                [[41.9007094, -87.6456276], [41.9008765, -87.645757], [41.9009407, -87.6458147]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_04dea420fd03449a362dba3678a12ac1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9c9dacb8d8632921e6d76b8c2a38b25a = $(`<div id=&quot;html_9c9dacb8d8632921e6d76b8c2a38b25a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 353804422 → 261230960 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/186983205&quot; target=&quot;_blank&quot;>186983205</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>30.034818026485542</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_04dea420fd03449a362dba3678a12ac1.setContent(html_9c9dacb8d8632921e6d76b8c2a38b25a);
            
        

        poly_line_42ab9cfa61d5eb561942ed98a9db4707.bindPopup(popup_04dea420fd03449a362dba3678a12ac1)
        ;

        
    
    
            var poly_line_fb7e4b68993a94f8972bb53003f5f94a = L.polyline(
                [[41.9002876, -87.6442638], [41.9001624, -87.644156], [41.9001483, -87.6441438], [41.900073, -87.644079]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f4bc3526453f6ce2e6b27e79840781c9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ca117193a1e1fbb2935310576c370842 = $(`<div id=&quot;html_ca117193a1e1fbb2935310576c370842&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 353804439 → 353804292 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/31623024&quot; target=&quot;_blank&quot;>31623024</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>28.34334997264867</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_f4bc3526453f6ce2e6b27e79840781c9.setContent(html_ca117193a1e1fbb2935310576c370842);
            
        

        poly_line_fb7e4b68993a94f8972bb53003f5f94a.bindPopup(popup_f4bc3526453f6ce2e6b27e79840781c9)
        ;

        
    
    
            var poly_line_04ba524762237d94700ac1cc38bd25f2 = L.polyline(
                [[41.9002876, -87.6442638], [41.9004501, -87.6444037], [41.900672, -87.6445948], [41.9008933, -87.6447855], [41.9010477, -87.6449184]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6a2ea12d7aa3cae71d112e6b041bd2a0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_949f96b814dc8f6225115fc5b73c15c5 = $(`<div id=&quot;html_949f96b814dc8f6225115fc5b73c15c5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 353804439 → 353804290 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/31623024&quot; target=&quot;_blank&quot;>31623024</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>100.39238646176904</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_6a2ea12d7aa3cae71d112e6b041bd2a0.setContent(html_949f96b814dc8f6225115fc5b73c15c5);
            
        

        poly_line_04ba524762237d94700ac1cc38bd25f2.bindPopup(popup_6a2ea12d7aa3cae71d112e6b041bd2a0)
        ;

        
    
    
            var poly_line_d3c9d093aa9d8f30e8e8c5241a927b51 = L.polyline(
                [[41.9002876, -87.6442638], [41.8999917, -87.644911], [41.89999, -87.644915], [41.899957, -87.6449847], [41.8998954, -87.6449324]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f44c5ca514702ae865bf2525bfad80b4 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3c05d775b344ed29ab4e0bd3abc422cc = $(`<div id=&quot;html_3c05d775b344ed29ab4e0bd3abc422cc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 353804439 → 1977388034 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/31623043&quot; target=&quot;_blank&quot;>31623043</a>, <a href=&quot;https://www.openstreetmap.org/way/130807195&quot; target=&quot;_blank&quot;>130807195</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>78.18366586897241</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr>             </table>         </div>         </div>`)[0];
                popup_f44c5ca514702ae865bf2525bfad80b4.setContent(html_3c05d775b344ed29ab4e0bd3abc422cc);
            
        

        poly_line_d3c9d093aa9d8f30e8e8c5241a927b51.bindPopup(popup_f44c5ca514702ae865bf2525bfad80b4)
        ;

        
    
    
            var poly_line_35ed11f67b7a0d4a846ed654370d3a6a = L.polyline(
                [[41.9050053, -87.6477845], [41.90495, -87.647784], [41.9049349, -87.6477838], [41.9041826, -87.6477769], [41.9037407, -87.6477699], [41.9036468, -87.647767]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e948d3c5bae6c44fed09eeb3136a90a6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_bcda52fe81236678b3f07488feb6a38c = $(`<div id=&quot;html_bcda52fe81236678b3f07488feb6a38c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 353809242 → 353809557 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/31623239&quot; target=&quot;_blank&quot;>31623239</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>151.0668637915832</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_e948d3c5bae6c44fed09eeb3136a90a6.setContent(html_bcda52fe81236678b3f07488feb6a38c);
            
        

        poly_line_35ed11f67b7a0d4a846ed654370d3a6a.bindPopup(popup_e948d3c5bae6c44fed09eeb3136a90a6)
        ;

        
    
    
            var poly_line_78fe91222c5eb794c1363e72850b6193 = L.polyline(
                [[41.9050053, -87.6477845], [41.9050031, -87.6479615], [41.9050033, -87.6479915], [41.9050012, -87.6481233]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_858ed0d7fca358eeabd36fb6c4313d8c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_05ed1a73c33b3a018cf6b88a089a4981 = $(`<div id=&quot;html_05ed1a73c33b3a018cf6b88a089a4981&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 353809242 → 734237297 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59586637&quot; target=&quot;_blank&quot;>59586637</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>28.042814535647206</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Scott Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_858ed0d7fca358eeabd36fb6c4313d8c.setContent(html_05ed1a73c33b3a018cf6b88a089a4981);
            
        

        poly_line_78fe91222c5eb794c1363e72850b6193.bindPopup(popup_858ed0d7fca358eeabd36fb6c4313d8c)
        ;

        
    
    
            var poly_line_b52acce4e900a6aa7163ee3f1f91356c = L.polyline(
                [[41.9050053, -87.6477845], [41.9050101, -87.6473932], [41.9050111, -87.6473156]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ebfbdebaa0c43d4649e02c465a2eda50 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4399b4de0e6c17c762fbc32d298ce724 = $(`<div id=&quot;html_4399b4de0e6c17c762fbc32d298ce724&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 353809242 → 353799889 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59586637&quot; target=&quot;_blank&quot;>59586637</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>38.81025569503599</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Scott Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_ebfbdebaa0c43d4649e02c465a2eda50.setContent(html_4399b4de0e6c17c762fbc32d298ce724);
            
        

        poly_line_b52acce4e900a6aa7163ee3f1f91356c.bindPopup(popup_ebfbdebaa0c43d4649e02c465a2eda50)
        ;

        
    
    
            var poly_line_7512ab2a3fdfd006f763110f5da24fe9 = L.polyline(
                [[41.9036468, -87.647767], [41.9037407, -87.6477699], [41.9041826, -87.6477769], [41.9049349, -87.6477838], [41.90495, -87.647784], [41.9050053, -87.6477845]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b7664d00c4518b6151b5345575f0c7a9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7208aa85290074031eedc7fbc7b88597 = $(`<div id=&quot;html_7208aa85290074031eedc7fbc7b88597&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 353809557 → 353809242 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/31623239&quot; target=&quot;_blank&quot;>31623239</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>151.06686379158316</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_b7664d00c4518b6151b5345575f0c7a9.setContent(html_7208aa85290074031eedc7fbc7b88597);
            
        

        poly_line_7512ab2a3fdfd006f763110f5da24fe9.bindPopup(popup_b7664d00c4518b6151b5345575f0c7a9)
        ;

        
    
    
            var poly_line_67ba4a4682878893d53f32b7d0b0f0fe = L.polyline(
                [[41.9036468, -87.647767], [41.9036459, -87.6478767], [41.9036452, -87.6479527], [41.9036431, -87.6480864]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_bd0fe9ad6b23fc9b5f5dc3557af5dd8c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1eab8406958941bdd993923fbf046441 = $(`<div id=&quot;html_1eab8406958941bdd993923fbf046441&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 353809557 → 102713547 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/621623498&quot; target=&quot;_blank&quot;>621623498</a>, <a href=&quot;https://www.openstreetmap.org/way/435397324&quot; target=&quot;_blank&quot;>435397324</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>5</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>26.436740615546938</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_bd0fe9ad6b23fc9b5f5dc3557af5dd8c.setContent(html_1eab8406958941bdd993923fbf046441);
            
        

        poly_line_67ba4a4682878893d53f32b7d0b0f0fe.bindPopup(popup_bd0fe9ad6b23fc9b5f5dc3557af5dd8c)
        ;

        
    
    
            var poly_line_fe0cf8c3184a22f1ac085c90b84abf34 = L.polyline(
                [[41.9036468, -87.647767], [41.903647, -87.6477441], [41.9036554, -87.6471759]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0f7178ead346635dda5ee19ca053eaa1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7b41baabca3e7f6fc4261e863ac825b4 = $(`<div id=&quot;html_7b41baabca3e7f6fc4261e863ac825b4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 353809557 → 9987432812 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435397324&quot; target=&quot;_blank&quot;>435397324</a>, <a href=&quot;https://www.openstreetmap.org/way/435397327&quot; target=&quot;_blank&quot;>435397327</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>5</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>48.92828197999325</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_0f7178ead346635dda5ee19ca053eaa1.setContent(html_7b41baabca3e7f6fc4261e863ac825b4);
            
        

        poly_line_fe0cf8c3184a22f1ac085c90b84abf34.bindPopup(popup_0f7178ead346635dda5ee19ca053eaa1)
        ;

        
    
    
            var poly_line_28371482fb243741f061ad54b3c34cec = L.polyline(
                [[41.9001054, -87.6614047], [41.9001478, -87.6613542]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_87295cf722df0a5893677ee01ebfa555 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1869222f1da5e623c736a1b7e4ae37a3 = $(`<div id=&quot;html_1869222f1da5e623c736a1b7e4ae37a3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 365024877 → 9042234635 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/32468937&quot; target=&quot;_blank&quot;>32468937</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>6.300545481321354</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Cortez Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_87295cf722df0a5893677ee01ebfa555.setContent(html_1869222f1da5e623c736a1b7e4ae37a3);
            
        

        poly_line_28371482fb243741f061ad54b3c34cec.bindPopup(popup_87295cf722df0a5893677ee01ebfa555)
        ;

        
    
    
            var poly_line_d2d3b31a98568ae9e93608a8871b6bde = L.polyline(
                [[41.9001054, -87.6614047], [41.9003202, -87.6617465]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e0bdd05a61393927c64a5f803ffeb887 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d00c60ee6b9da7f0115f00b4dcedd1b7 = $(`<div id=&quot;html_d00c60ee6b9da7f0115f00b4dcedd1b7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 365024877 → 13591152307 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1259531122&quot; target=&quot;_blank&quot;>1259531122</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>37.023264666188346</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Milwaukee Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_e0bdd05a61393927c64a5f803ffeb887.setContent(html_d00c60ee6b9da7f0115f00b4dcedd1b7);
            
        

        poly_line_d2d3b31a98568ae9e93608a8871b6bde.bindPopup(popup_e0bdd05a61393927c64a5f803ffeb887)
        ;

        
    
    
            var poly_line_874ffff1604264f6aaa8a06897b81988 = L.polyline(
                [[41.9001054, -87.6614047], [41.8999299, -87.6611309], [41.8999045, -87.6610902], [41.8998422, -87.6609825]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ab8874e234a366cd81935242c7097083 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_acb1c9a0f8d97d7ab4ffc6b99249ed11 = $(`<div id=&quot;html_acb1c9a0f8d97d7ab4ffc6b99249ed11&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 365024877 → 43503249 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435543550&quot; target=&quot;_blank&quot;>435543550</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>45.59035371583749</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Milwaukee Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_ab8874e234a366cd81935242c7097083.setContent(html_acb1c9a0f8d97d7ab4ffc6b99249ed11);
            
        

        poly_line_874ffff1604264f6aaa8a06897b81988.bindPopup(popup_ab8874e234a366cd81935242c7097083)
        ;

        
    
    
            var poly_line_96c3fc613bcb078d24fed323dffc82b7 = L.polyline(
                [[41.9015647, -87.6616923], [41.901759, -87.6616986], [41.9018907, -87.6617014], [41.9019389, -87.6617027], [41.9019368, -87.6617988], [41.9021815, -87.6618108]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8b0d3b4c3ca74d5c8cfe180a325d5926 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f9b067a04ac5c35d2c9217298c70053b = $(`<div id=&quot;html_f9b067a04ac5c35d2c9217298c70053b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 365024908 → 261186106 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24103249&quot; target=&quot;_blank&quot;>24103249</a>, <a href=&quot;https://www.openstreetmap.org/way/24083875&quot; target=&quot;_blank&quot;>24083875</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>76.8027449320204</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_8b0d3b4c3ca74d5c8cfe180a325d5926.setContent(html_f9b067a04ac5c35d2c9217298c70053b);
            
        

        poly_line_96c3fc613bcb078d24fed323dffc82b7.bindPopup(popup_8b0d3b4c3ca74d5c8cfe180a325d5926)
        ;

        
    
    
            var poly_line_6a125c5342593f2d4d7a8f7ea8135652 = L.polyline(
                [[41.9015647, -87.6616923], [41.9015603, -87.6617202], [41.9015499, -87.661745], [41.9015346, -87.6617645], [41.9015156, -87.6617772], [41.9014947, -87.6617817]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d3498fbbf6b49f23553269a92af85dcc = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_41abe712d050b6335a83c4be5497c08b = $(`<div id=&quot;html_41abe712d050b6335a83c4be5497c08b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 365024908 → 261202233 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59648583&quot; target=&quot;_blank&quot;>59648583</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>junction</td><td style='padding:2px 6px;'>roundabout</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>11.774496794710318</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_d3498fbbf6b49f23553269a92af85dcc.setContent(html_41abe712d050b6335a83c4be5497c08b);
            
        

        poly_line_6a125c5342593f2d4d7a8f7ea8135652.bindPopup(popup_d3498fbbf6b49f23553269a92af85dcc)
        ;

        
    
    
            var poly_line_2aec4647be454bb5d403979cf5bc13cd = L.polyline(
                [[41.9006488, -87.6586696], [41.9006493, -87.6586168]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_26f26e2b5075d0e8368e572db62bfad8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1be6c63f64e203e6d0f879be4b1ef04e = $(`<div id=&quot;html_1be6c63f64e203e6d0f879be4b1ef04e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 365026537 → 11735383566 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1126560639&quot; target=&quot;_blank&quot;>1126560639</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>4.370237080665664</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Cortez Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_26f26e2b5075d0e8368e572db62bfad8.setContent(html_1be6c63f64e203e6d0f879be4b1ef04e);
            
        

        poly_line_2aec4647be454bb5d403979cf5bc13cd.bindPopup(popup_26f26e2b5075d0e8368e572db62bfad8)
        ;

        
    
    
            var poly_line_9e8c58c13b48c4cc5a233bd2b47c0cd4 = L.polyline(
                [[41.8969842, -87.6565542], [41.8970635, -87.6565565]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5b3caa02c5d1895b334832fc25e319e0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e67b9d245398592d8c1bc0f318b07ebb = $(`<div id=&quot;html_e67b9d245398592d8c1bc0f318b07ebb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 365026544 → 11967979365 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435657943&quot; target=&quot;_blank&quot;>435657943</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>3</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>8.81982478757355</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_5b3caa02c5d1895b334832fc25e319e0.setContent(html_e67b9d245398592d8c1bc0f318b07ebb);
            
        

        poly_line_9e8c58c13b48c4cc5a233bd2b47c0cd4.bindPopup(popup_5b3caa02c5d1895b334832fc25e319e0)
        ;

        
    
    
            var poly_line_d52eec673b19dd8ea6916490d73b4ef8 = L.polyline(
                [[41.8969842, -87.6565542], [41.8968932, -87.6565495]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0c5a13465ffa446214ae1791271d1bc6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_919c71b1c03f20cfe2be51249e8112b1 = $(`<div id=&quot;html_919c71b1c03f20cfe2be51249e8112b1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 365026544 → 11967979362 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1290800462&quot; target=&quot;_blank&quot;>1290800462</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>10.126227437665431</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>Milwaukee Avenue Bikeway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_0c5a13465ffa446214ae1791271d1bc6.setContent(html_919c71b1c03f20cfe2be51249e8112b1);
            
        

        poly_line_d52eec673b19dd8ea6916490d73b4ef8.bindPopup(popup_0c5a13465ffa446214ae1791271d1bc6)
        ;

        
    
    
            var poly_line_c47dd75e09ba8a6dec735f032273a06d = L.polyline(
                [[41.8969842, -87.6565542], [41.8970851, -87.6567187], [41.8974761, -87.6573171], [41.8976238, -87.6575435]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_eb09253103614dfd0253881c43f54c94 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_492a4ee9e9bd5d0e425c91c8d46b9e7f = $(`<div id=&quot;html_492a4ee9e9bd5d0e425c91c8d46b9e7f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 365026544 → 261164740 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/525995406&quot; target=&quot;_blank&quot;>525995406</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>108.46315423500727</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Milwaukee Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_eb09253103614dfd0253881c43f54c94.setContent(html_492a4ee9e9bd5d0e425c91c8d46b9e7f);
            
        

        poly_line_c47dd75e09ba8a6dec735f032273a06d.bindPopup(popup_eb09253103614dfd0253881c43f54c94)
        ;

        
    
    
            var poly_line_01aa316e14648a622c6683aebda73d81 = L.polyline(
                [[41.9049054, -87.6615658], [41.9051855, -87.6615745], [41.9053172, -87.6615073], [41.9053878, -87.6614296], [41.9053982, -87.6614182], [41.905531, -87.6614222], [41.9057286, -87.6614517]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#911eb4&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#911eb4&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_222da4463346d02e90466eacad3e0582 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9351f87bfedea6106d2eace0a25f1536 = $(`<div id=&quot;html_9351f87bfedea6106d2eace0a25f1536&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 369880945 → 5493211364 (key 0)<br>                 <b>Component</b> 4<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24083880&quot; target=&quot;_blank&quot;>24083880</a>, <a href=&quot;https://www.openstreetmap.org/way/571608505&quot; target=&quot;_blank&quot;>571608505</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>95.33678661187713</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Ada Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr>             </table>         </div>         </div>`)[0];
                popup_222da4463346d02e90466eacad3e0582.setContent(html_9351f87bfedea6106d2eace0a25f1536);
            
        

        poly_line_01aa316e14648a622c6683aebda73d81.bindPopup(popup_222da4463346d02e90466eacad3e0582)
        ;

        
    
    
            var poly_line_2c4e6bd70401b61ad3e50c25f3a2ee5c = L.polyline(
                [[41.9110141, -87.6536058], [41.9109195, -87.6536034], [41.9108373, -87.6536017]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8adb147cc7ea22249e3482d587d48e2a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5fe2b43d2eda4336f3f8a8d1b4483501 = $(`<div id=&quot;html_5fe2b43d2eda4336f3f8a8d1b4483501&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 418527772 → 11891975132 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1465134065&quot; target=&quot;_blank&quot;>1465134065</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.662247876531325</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_8adb147cc7ea22249e3482d587d48e2a.setContent(html_5fe2b43d2eda4336f3f8a8d1b4483501);
            
        

        poly_line_2c4e6bd70401b61ad3e50c25f3a2ee5c.bindPopup(popup_8adb147cc7ea22249e3482d587d48e2a)
        ;

        
    
    
            var poly_line_6b49c731e7636a0295104bfdaee2c630 = L.polyline(
                [[41.9050327, -87.6491956], [41.9050228, -87.6490522], [41.9050321, -87.6486199]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_04afda39bd27711ae01ae2e15381f789 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_425de6b6d3bfe440505be6c941ca480e = $(`<div id=&quot;html_425de6b6d3bfe440505be6c941ca480e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 469358424 → 734237804 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59204089&quot; target=&quot;_blank&quot;>59204089</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>47.70924968893197</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Scott Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_04afda39bd27711ae01ae2e15381f789.setContent(html_425de6b6d3bfe440505be6c941ca480e);
            
        

        poly_line_6b49c731e7636a0295104bfdaee2c630.bindPopup(popup_04afda39bd27711ae01ae2e15381f789)
        ;

        
    
    
            var poly_line_7f9b68492cab8573051e2d6d0e1e520d = L.polyline(
                [[41.9050327, -87.6491956], [41.9049995, -87.6492762], [41.9048646, -87.6492981]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9d789ec7a1a18742aad2017b48c95c7e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ca5a22ea5aee188e4e1d472a287cd3ac = $(`<div id=&quot;html_ca5a22ea5aee188e4e1d472a287cd3ac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 469358424 → 2784579737 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/210314104&quot; target=&quot;_blank&quot;>210314104</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.732992841850635</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_9d789ec7a1a18742aad2017b48c95c7e.setContent(html_ca5a22ea5aee188e4e1d472a287cd3ac);
            
        

        poly_line_7f9b68492cab8573051e2d6d0e1e520d.bindPopup(popup_9d789ec7a1a18742aad2017b48c95c7e)
        ;

        
    
    
            var poly_line_c40ea800e185b4ac8a2b10680fe00491 = L.polyline(
                [[41.9050327, -87.6491956], [41.9051233, -87.6493164], [41.9053306, -87.6494885]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0385ff18d8077433679195a811aeeb1a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_73eaaaca8dd3ed4d2dca275c8e52c0cd = $(`<div id=&quot;html_73eaaaca8dd3ed4d2dca275c8e52c0cd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 469358424 → 2387206232 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273622070&quot; target=&quot;_blank&quot;>273622070</a>, <a href=&quot;https://www.openstreetmap.org/way/1205977031&quot; target=&quot;_blank&quot;>1205977031</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>41.288536038285834</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_0385ff18d8077433679195a811aeeb1a.setContent(html_73eaaaca8dd3ed4d2dca275c8e52c0cd);
            
        

        poly_line_c40ea800e185b4ac8a2b10680fe00491.bindPopup(popup_0385ff18d8077433679195a811aeeb1a)
        ;

        
    
    
            var poly_line_ff037c3c10c9e6cfe4fae923b45b9db2 = L.polyline(
                [[41.9050327, -87.6491956], [41.9049539, -87.6491463], [41.9046899, -87.6489886], [41.9040353, -87.6484688], [41.9037598, -87.6482057], [41.9037317, -87.648169], [41.9036431, -87.6480864]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3ecf2cbefd07bf3feb3c2c216a54fd05 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3d5f8b060554a5b7ec0dc8db705bdecf = $(`<div id=&quot;html_3d5f8b060554a5b7ec0dc8db705bdecf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 469358424 → 102713547 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1447344341&quot; target=&quot;_blank&quot;>1447344341</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>180.27378085751528</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_3ecf2cbefd07bf3feb3c2c216a54fd05.setContent(html_3d5f8b060554a5b7ec0dc8db705bdecf);
            
        

        poly_line_ff037c3c10c9e6cfe4fae923b45b9db2.bindPopup(popup_3ecf2cbefd07bf3feb3c2c216a54fd05)
        ;

        
    
    
            var poly_line_bfcdd122eff5c4dc06c6b15321dac382 = L.polyline(
                [[41.9071416, -87.6566755], [41.90714, -87.6567891]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a646e04618d738f9a18a6bf40aedbeba = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9788fffad217df6bd73254988e24b1b0 = $(`<div id=&quot;html_9788fffad217df6bd73254988e24b1b0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 600507960 → 12193660140 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/372671682&quot; target=&quot;_blank&quot;>372671682</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>9.40259783987503</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Blackhawk Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_a646e04618d738f9a18a6bf40aedbeba.setContent(html_9788fffad217df6bd73254988e24b1b0);
            
        

        poly_line_bfcdd122eff5c4dc06c6b15321dac382.bindPopup(popup_a646e04618d738f9a18a6bf40aedbeba)
        ;

        
    
    
            var poly_line_6724fbaf92604f94c33b64870101011f = L.polyline(
                [[41.9071416, -87.6566755], [41.9071439, -87.6566169]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c8a7ce804f280a2eccf1af19990fcbb8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_948b96d53c8f4ed3cd71a3838e4c4639 = $(`<div id=&quot;html_948b96d53c8f4ed3cd71a3838e4c4639&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 600507960 → 261193484 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/372671682&quot; target=&quot;_blank&quot;>372671682</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>4.856154414095208</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Blackhawk Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_c8a7ce804f280a2eccf1af19990fcbb8.setContent(html_948b96d53c8f4ed3cd71a3838e4c4639);
            
        

        poly_line_6724fbaf92604f94c33b64870101011f.bindPopup(popup_c8a7ce804f280a2eccf1af19990fcbb8)
        ;

        
    
    
            var poly_line_dfa81f9228a304a331681cd95e59cc46 = L.polyline(
                [[41.9071461, -87.6565377], [41.9071439, -87.6566169]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9a8b80562818d27d6869d858a0f7e766 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ca0ec81fa22d6a4b03b18cdd4139c19a = $(`<div id=&quot;html_ca0ec81fa22d6a4b03b18cdd4139c19a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 600507966 → 261193484 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24085261&quot; target=&quot;_blank&quot;>24085261</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>6.558721982898054</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Blackhawk Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_9a8b80562818d27d6869d858a0f7e766.setContent(html_ca0ec81fa22d6a4b03b18cdd4139c19a);
            
        

        poly_line_dfa81f9228a304a331681cd95e59cc46.bindPopup(popup_9a8b80562818d27d6869d858a0f7e766)
        ;

        
    
    
            var poly_line_8210d8f9462af7541192bac4c7760881 = L.polyline(
                [[41.9071461, -87.6565377], [41.9071475, -87.6564787], [41.9071476, -87.6564734], [41.9071638, -87.6555843], [41.907165, -87.6555402], [41.9071692, -87.6554461]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6215ab182040e13214958aa14a4a5082 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8baf07209bb934d940c391918e6489de = $(`<div id=&quot;html_8baf07209bb934d940c391918e6489de&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 600507966 → 3762220118 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24085261&quot; target=&quot;_blank&quot;>24085261</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>90.37592158244553</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Blackhawk Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_6215ab182040e13214958aa14a4a5082.setContent(html_8baf07209bb934d940c391918e6489de);
            
        

        poly_line_8210d8f9462af7541192bac4c7760881.bindPopup(popup_6215ab182040e13214958aa14a4a5082)
        ;

        
    
    
            var poly_line_e824e3cbbefb4072e800aba2ab1bb016 = L.polyline(
                [[41.9071461, -87.6565377], [41.9072362, -87.6565419], [41.9072918, -87.6565457], [41.9073661, -87.6565503]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_75a0990216c263573c250b64a78de43a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_954978fe5f9e586819df7bad60d2fb24 = $(`<div id=&quot;html_954978fe5f9e586819df7bad60d2fb24&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 600507966 → 12183227669 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/221316607&quot; target=&quot;_blank&quot;>221316607</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>24.485703165364065</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_75a0990216c263573c250b64a78de43a.setContent(html_954978fe5f9e586819df7bad60d2fb24);
            
        

        poly_line_e824e3cbbefb4072e800aba2ab1bb016.bindPopup(popup_75a0990216c263573c250b64a78de43a)
        ;

        
    
    
            var poly_line_8e7a43f85d6f488eda204d63bf097272 = L.polyline(
                [[41.9099654, -87.6609934], [41.9101766, -87.6610044]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c0988126d0261b84b28068a5ab4760c4 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5020e9255948cc495966491cf8e758c5 = $(`<div id=&quot;html_5020e9255948cc495966491cf8e758c5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 600583662 → 5493212928 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/467501412&quot; target=&quot;_blank&quot;>467501412</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>23.502035913895185</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_c0988126d0261b84b28068a5ab4760c4.setContent(html_5020e9255948cc495966491cf8e758c5);
            
        

        poly_line_8e7a43f85d6f488eda204d63bf097272.bindPopup(popup_c0988126d0261b84b28068a5ab4760c4)
        ;

        
    
    
            var poly_line_2eaebfa8ee9b6d83408dae97d72ff065 = L.polyline(
                [[41.9099654, -87.6609934], [41.9099661, -87.6611489]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1d7cd5448d3585b28dcf0f5594c1bc2d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_74c3b7a1793b31ea87bc37682345ef90 = $(`<div id=&quot;html_74c3b7a1793b31ea87bc37682345ef90&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 600583662 → 5493212935 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1427783269&quot; target=&quot;_blank&quot;>1427783269</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>12.867995243706618</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_1d7cd5448d3585b28dcf0f5594c1bc2d.setContent(html_74c3b7a1793b31ea87bc37682345ef90);
            
        

        poly_line_2eaebfa8ee9b6d83408dae97d72ff065.bindPopup(popup_1d7cd5448d3585b28dcf0f5594c1bc2d)
        ;

        
    
    
            var poly_line_d4bfc5104b4316223c67a9f9df24b86a = L.polyline(
                [[41.9099654, -87.6609934], [41.9099049, -87.6609775], [41.9098633, -87.6609655]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_47a11f83b93b307c7ac33cc1151bafbf = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d62be1e3510617a565275eab7cce396c = $(`<div id=&quot;html_d62be1e3510617a565275eab7cce396c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 600583662 → 13125728085 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/467501412&quot; target=&quot;_blank&quot;>467501412</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>11.585863499225935</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_47a11f83b93b307c7ac33cc1151bafbf.setContent(html_d62be1e3510617a565275eab7cce396c);
            
        

        poly_line_d4bfc5104b4316223c67a9f9df24b86a.bindPopup(popup_47a11f83b93b307c7ac33cc1151bafbf)
        ;

        
    
    
            var poly_line_d9a0b081ebba7b4fd1b6fcb539947941 = L.polyline(
                [[41.9034499, -87.6606648], [41.9034521, -87.6605229], [41.9034577, -87.6601641], [41.9034608, -87.6599663]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fda8982f18a3ebe5d5899515e05e6962 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c3d0c6548407af0b50b14e970d5d73e8 = $(`<div id=&quot;html_c3d0c6548407af0b50b14e970d5d73e8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734122955 → 5868632532 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/145813128&quot; target=&quot;_blank&quot;>145813128</a>, <a href=&quot;https://www.openstreetmap.org/way/1213415577&quot; target=&quot;_blank&quot;>1213415577</a>, <a href=&quot;https://www.openstreetmap.org/way/1213415578&quot; target=&quot;_blank&quot;>1213415578</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>57.82008019823129</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_fda8982f18a3ebe5d5899515e05e6962.setContent(html_c3d0c6548407af0b50b14e970d5d73e8);
            
        

        poly_line_d9a0b081ebba7b4fd1b6fcb539947941.bindPopup(popup_fda8982f18a3ebe5d5899515e05e6962)
        ;

        
    
    
            var poly_line_0427b1423c7ee42c6e012c9dded90fe4 = L.polyline(
                [[41.9034499, -87.6606648], [41.9034349, -87.6616693], [41.9034315, -87.6618026]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3070a40f2ad02b8d19b97f3487787736 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_eb1dd3599805b82b90af440298e3f773 = $(`<div id=&quot;html_eb1dd3599805b82b90af440298e3f773&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734122955 → 2565051770 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/145813128&quot; target=&quot;_blank&quot;>145813128</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>94.1867661518767</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_3070a40f2ad02b8d19b97f3487787736.setContent(html_eb1dd3599805b82b90af440298e3f773);
            
        

        poly_line_0427b1423c7ee42c6e012c9dded90fe4.bindPopup(popup_3070a40f2ad02b8d19b97f3487787736)
        ;

        
    
    
            var poly_line_d4e71f8d42ab7e904ae1304b08517073 = L.polyline(
                [[41.9071388, -87.6599435], [41.9071133, -87.6597781], [41.9071166, -87.6595121]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_71d9579a9d3b12defefe99c371316279 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5568cae505c6c41e6c9ff7b5a85a5f27 = $(`<div id=&quot;html_5568cae505c6c41e6c9ff7b5a85a5f27&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734123164 → 12195806859 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24085264&quot; target=&quot;_blank&quot;>24085264</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>35.99398245319241</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Blackhawk Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_71d9579a9d3b12defefe99c371316279.setContent(html_5568cae505c6c41e6c9ff7b5a85a5f27);
            
        

        poly_line_d4e71f8d42ab7e904ae1304b08517073.bindPopup(popup_71d9579a9d3b12defefe99c371316279)
        ;

        
    
    
            var poly_line_0b72ddec157d7b1ec2872ed785af99f5 = L.polyline(
                [[41.9071388, -87.6599435], [41.9070252, -87.6599065], [41.9067581, -87.6598465], [41.9066884, -87.6598337]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6d967d58d9804cfd198f36ce7310ada1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_621b86f4d2533df46d770d874a258228 = $(`<div id=&quot;html_621b86f4d2533df46d770d874a258228&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734123164 → 12187280017 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/221317663&quot; target=&quot;_blank&quot;>221317663</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>3</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>50.9323129145836</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_6d967d58d9804cfd198f36ce7310ada1.setContent(html_621b86f4d2533df46d770d874a258228);
            
        

        poly_line_0b72ddec157d7b1ec2872ed785af99f5.bindPopup(popup_6d967d58d9804cfd198f36ce7310ada1)
        ;

        
    
    
            var poly_line_3197b9b2d229378b172b54343fdebae4 = L.polyline(
                [[41.9071388, -87.6599435], [41.9072639, -87.6598808], [41.907326, -87.6598038], [41.9073518, -87.6597699], [41.9073684, -87.6597555]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_cb0bd9c126c1335e5b8c633e7b611ce2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f12dd2cf582dae5c219e81b88b88b4ab = $(`<div id=&quot;html_f12dd2cf582dae5c219e81b88b88b4ab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734123164 → 12195806862 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/221317664&quot; target=&quot;_blank&quot;>221317664</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>30.45234481281087</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Magnolia Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_cb0bd9c126c1335e5b8c633e7b611ce2.setContent(html_f12dd2cf582dae5c219e81b88b88b4ab);
            
        

        poly_line_3197b9b2d229378b172b54343fdebae4.bindPopup(popup_cb0bd9c126c1335e5b8c633e7b611ce2)
        ;

        
    
    
            var poly_line_5b3850705c464fd17301ef894832c38e = L.polyline(
                [[41.9071388, -87.6599435], [41.9071213, -87.6600818], [41.9070976, -87.6601817], [41.9070346, -87.6604335], [41.9070173, -87.6605283], [41.9069998, -87.6606346], [41.9070035, -87.6606618], [41.9070138, -87.6606795], [41.9070789, -87.6607078], [41.9072353, -87.6607456]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ef01f8931a2a558c037f8c0d4a671141 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8c75b7f74bb6c4ca16171272480c99e1 = $(`<div id=&quot;html_8c75b7f74bb6c4ca16171272480c99e1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734123164 → 7505359100 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/802366685&quot; target=&quot;_blank&quot;>802366685</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>88.78272242587897</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_ef01f8931a2a558c037f8c0d4a671141.setContent(html_8c75b7f74bb6c4ca16171272480c99e1);
            
        

        poly_line_5b3850705c464fd17301ef894832c38e.bindPopup(popup_ef01f8931a2a558c037f8c0d4a671141)
        ;

        
    
    
            var poly_line_977ac11f358cfd1ad28dcc5b2cd0fa55 = L.polyline(
                [[41.9071388, -87.6599435], [41.9072214, -87.6600081], [41.9072466, -87.6600279], [41.9080009, -87.6604804]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d6a00b75b800a80ccb464b7086005bdf = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4b3a6641ae56fc706460d7d2b592e426 = $(`<div id=&quot;html_4b3a6641ae56fc706460d7d2b592e426&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734123164 → 5493212927 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1124448279&quot; target=&quot;_blank&quot;>1124448279</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>105.7271430303806</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_d6a00b75b800a80ccb464b7086005bdf.setContent(html_4b3a6641ae56fc706460d7d2b592e426);
            
        

        poly_line_977ac11f358cfd1ad28dcc5b2cd0fa55.bindPopup(popup_d6a00b75b800a80ccb464b7086005bdf)
        ;

        
    
    
            var poly_line_651be1b6914752bb0d325ba22d2d0573 = L.polyline(
                [[41.9071388, -87.6599435], [41.9070233, -87.6599875], [41.906813, -87.6599543], [41.906278, -87.6598541], [41.9062104, -87.6598414]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d277e864c5e7fc7f307d60ecb675c9a3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a7da6f39fd131ed2b49a4751d2fcb888 = $(`<div id=&quot;html_a7da6f39fd131ed2b49a4751d2fcb888&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734123164 → 11967979359 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1301135036&quot; target=&quot;_blank&quot;>1301135036</a>, <a href=&quot;https://www.openstreetmap.org/way/1316819996&quot; target=&quot;_blank&quot;>1316819996</a>, <a href=&quot;https://www.openstreetmap.org/way/1316819998&quot; target=&quot;_blank&quot;>1316819998</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>104.54880408256683</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>Elston Avenue Bikeway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_d277e864c5e7fc7f307d60ecb675c9a3.setContent(html_a7da6f39fd131ed2b49a4751d2fcb888);
            
        

        poly_line_651be1b6914752bb0d325ba22d2d0573.bindPopup(popup_d277e864c5e7fc7f307d60ecb675c9a3)
        ;

        
    
    
            var poly_line_c05d2f7ecd5c15b4d0d1c43e7a95528c = L.polyline(
                [[41.9038313, -87.6543492], [41.9039373, -87.6544389]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1927de90901ff61e10bee55f6e47be0b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c5420c47eedbc27d03e941ff1008e4e7 = $(`<div id=&quot;html_c5420c47eedbc27d03e941ff1008e4e7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734235544 → 5493314481 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59204024&quot; target=&quot;_blank&quot;>59204024</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>13.929592802109156</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Cherry Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_1927de90901ff61e10bee55f6e47be0b.setContent(html_c5420c47eedbc27d03e941ff1008e4e7);
            
        

        poly_line_c05d2f7ecd5c15b4d0d1c43e7a95528c.bindPopup(popup_1927de90901ff61e10bee55f6e47be0b)
        ;

        
    
    
            var poly_line_8679191f8eb94e40901c2f78f3d6fc28 = L.polyline(
                [[41.9038313, -87.6543492], [41.9039238, -87.6541207]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_38880efd650b2d228bfa5a21ec633dbe = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_bef54ca2d1e0dcdb8550e1e81d644e7d = $(`<div id=&quot;html_bef54ca2d1e0dcdb8550e1e81d644e7d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734235544 → 5493314521 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626352&quot; target=&quot;_blank&quot;>571626352</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.526606256781683</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_38880efd650b2d228bfa5a21ec633dbe.setContent(html_bef54ca2d1e0dcdb8550e1e81d644e7d);
            
        

        poly_line_8679191f8eb94e40901c2f78f3d6fc28.bindPopup(popup_38880efd650b2d228bfa5a21ec633dbe)
        ;

        
    
    
            var poly_line_a55f2225027b96b65ddf6800c698f867 = L.polyline(
                [[41.9038313, -87.6543492], [41.9036361, -87.6541802], [41.9035536, -87.6541123]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7f4336e4fa75282dbe2cc5085a72300e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_de0902fad81632b31c6e369f0871da28 = $(`<div id=&quot;html_de0902fad81632b31c6e369f0871da28&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734235544 → 12177119505 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59204024&quot; target=&quot;_blank&quot;>59204024</a>, <a href=&quot;https://www.openstreetmap.org/way/1341661980&quot; target=&quot;_blank&quot;>1341661980</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>36.57908135830546</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Cherry Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_7f4336e4fa75282dbe2cc5085a72300e.setContent(html_de0902fad81632b31c6e369f0871da28);
            
        

        poly_line_a55f2225027b96b65ddf6800c698f867.bindPopup(popup_7f4336e4fa75282dbe2cc5085a72300e)
        ;

        
    
    
            var poly_line_5fd0cd3f132938a30b5f1fb2bab802cc = L.polyline(
                [[41.9014349, -87.6523605], [41.9014093, -87.6523366], [41.9012976, -87.6522322], [41.9012123, -87.6521525]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a1aee5bf4dfb9d1256a5b50bf984950a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_987c8deaf6e0fc05eb2c8517d895256f = $(`<div id=&quot;html_987c8deaf6e0fc05eb2c8517d895256f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734235574 → 12177117285 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59204025&quot; target=&quot;_blank&quot;>59204025</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>30.149662775678962</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Cherry Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_a1aee5bf4dfb9d1256a5b50bf984950a.setContent(html_987c8deaf6e0fc05eb2c8517d895256f);
            
        

        poly_line_5fd0cd3f132938a30b5f1fb2bab802cc.bindPopup(popup_a1aee5bf4dfb9d1256a5b50bf984950a)
        ;

        
    
    
            var poly_line_91d10d5a9c063342100f2d495f493952 = L.polyline(
                [[41.9014349, -87.6523605], [41.9014793, -87.652269], [41.9015133, -87.6522033]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a8526aa10bd264cedf222ba46719fab0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_26c4e8885e60086532b1b6be7e2244db = $(`<div id=&quot;html_26c4e8885e60086532b1b6be7e2244db&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734235574 → 7165417931 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/767436171&quot; target=&quot;_blank&quot;>767436171</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>15.662561930732071</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_a8526aa10bd264cedf222ba46719fab0.setContent(html_26c4e8885e60086532b1b6be7e2244db);
            
        

        poly_line_91d10d5a9c063342100f2d495f493952.bindPopup(popup_a8526aa10bd264cedf222ba46719fab0)
        ;

        
    
    
            var poly_line_d63844d38378ff29e43c6ce14c230719 = L.polyline(
                [[41.9014349, -87.6523605], [41.9017145, -87.6525926], [41.9022047, -87.6529993]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1b807ef1822ee8ed6b0b04c0c4677159 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_26322e44ab9553da70d58e16f30149d5 = $(`<div id=&quot;html_26322e44ab9553da70d58e16f30149d5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734235574 → 5493314597 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1341661980&quot; target=&quot;_blank&quot;>1341661980</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>100.60834390249096</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Cherry Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_1b807ef1822ee8ed6b0b04c0c4677159.setContent(html_26322e44ab9553da70d58e16f30149d5);
            
        

        poly_line_d63844d38378ff29e43c6ce14c230719.bindPopup(popup_1b807ef1822ee8ed6b0b04c0c4677159)
        ;

        
    
    
            var poly_line_98bc560109ff6ae4675d193d68f26f23 = L.polyline(
                [[41.9071579, -87.6553405], [41.9071681, -87.6552482]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a97775ae9c7d341d5b8a802f2e9f312e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_83912bd41c6d98600fe4301b27324adb = $(`<div id=&quot;html_83912bd41c6d98600fe4301b27324adb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734235752 → 5493314429 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1307412679&quot; target=&quot;_blank&quot;>1307412679</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.721988255699831</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_a97775ae9c7d341d5b8a802f2e9f312e.setContent(html_83912bd41c6d98600fe4301b27324adb);
            
        

        poly_line_98bc560109ff6ae4675d193d68f26f23.bindPopup(popup_a97775ae9c7d341d5b8a802f2e9f312e)
        ;

        
    
    
            var poly_line_cbd5e3262f6103b4d684b393692e9e39 = L.polyline(
                [[41.9071579, -87.6553405], [41.9071564, -87.6553832], [41.9071569, -87.6554457]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_45e152f5ede65b8c3d11298a93de9fa7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f26636e029cd6d8200a3251ed14fb584 = $(`<div id=&quot;html_f26636e029cd6d8200a3251ed14fb584&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734235752 → 12107616297 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1307412679&quot; target=&quot;_blank&quot;>1307412679</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>8.710007332740027</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_45e152f5ede65b8c3d11298a93de9fa7.setContent(html_f26636e029cd6d8200a3251ed14fb584);
            
        

        poly_line_cbd5e3262f6103b4d684b393692e9e39.bindPopup(popup_45e152f5ede65b8c3d11298a93de9fa7)
        ;

        
    
    
            var poly_line_8cb5a569d3c73c179e6ae2ab72925469 = L.polyline(
                [[41.9071579, -87.6553405], [41.9071918, -87.6553423], [41.9073125, -87.655349], [41.9075576, -87.655352], [41.9076187, -87.6553544]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_55ac4850918fc04c63c7e7aead07c247 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_46ed4800a3251385851392bac8186757 = $(`<div id=&quot;html_46ed4800a3251385851392bac8186757&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734235752 → 12177117216 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1315559033&quot; target=&quot;_blank&quot;>1315559033</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>51.25711749802345</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>Cherry Avenue Bikeway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_55ac4850918fc04c63c7e7aead07c247.setContent(html_46ed4800a3251385851392bac8186757);
            
        

        poly_line_8cb5a569d3c73c179e6ae2ab72925469.bindPopup(popup_55ac4850918fc04c63c7e7aead07c247)
        ;

        
    
    
            var poly_line_bb1d6ebe135284204dd73ffd7d36eea2 = L.polyline(
                [[41.910546, -87.65553], [41.9105634, -87.6555607], [41.9106181, -87.6555635]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3687821385fb9ea5b8c41d02b84f8857 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_51793b2d600b50b7232bdc618f89c955 = $(`<div id=&quot;html_51793b2d600b50b7232bdc618f89c955&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734236051 → 12177117245 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/232384399&quot; target=&quot;_blank&quot;>232384399</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>path</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>9.2800889097119</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_3687821385fb9ea5b8c41d02b84f8857.setContent(html_51793b2d600b50b7232bdc618f89c955);
            
        

        poly_line_bb1d6ebe135284204dd73ffd7d36eea2.bindPopup(popup_3687821385fb9ea5b8c41d02b84f8857)
        ;

        
    
    
            var poly_line_93f70ebe995e7534da55e1d09de12eb9 = L.polyline(
                [[41.910546, -87.65553], [41.9105691, -87.6554909], [41.9106168, -87.6554938], [41.9106201, -87.6554752], [41.9106291, -87.6554686], [41.9106528, -87.6554729], [41.9106792, -87.65549], [41.9106956, -87.6554909], [41.9107136, -87.6554875], [41.9107292, -87.6554833]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_820bcf53a67301990f4bbc36db166539 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_db8191a3c635ef7d9ce3495aa70eb0cc = $(`<div id=&quot;html_db8191a3c635ef7d9ce3495aa70eb0cc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734236051 → 9879287201 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/232384399&quot; target=&quot;_blank&quot;>232384399</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>path</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>23.696410011840037</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_820bcf53a67301990f4bbc36db166539.setContent(html_db8191a3c635ef7d9ce3495aa70eb0cc);
            
        

        poly_line_93f70ebe995e7534da55e1d09de12eb9.bindPopup(popup_820bcf53a67301990f4bbc36db166539)
        ;

        
    
    
            var poly_line_4ac0826f5829aa181cc4048398f3949e = L.polyline(
                [[41.910546, -87.65553], [41.9100689, -87.65552], [41.9099922, -87.6555202], [41.9095053, -87.6555106], [41.9090337, -87.655444], [41.9087553, -87.6554313]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_836baec97c2ff636d15162b1987a7155 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c2c4659859661eddf62a0a4456015ca6 = $(`<div id=&quot;html_c2c4659859661eddf62a0a4456015ca6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734236051 → 12177117212 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1315559040&quot; target=&quot;_blank&quot;>1315559040</a>, <a href=&quot;https://www.openstreetmap.org/way/236127718&quot; target=&quot;_blank&quot;>236127718</a>, <a href=&quot;https://www.openstreetmap.org/way/1359094200&quot; target=&quot;_blank&quot;>1359094200</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>access</td><td style='padding:2px 6px;'>designated</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>bridge</td><td style='padding:2px 6px;'>movable</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>path</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>199.43598287018622</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>Goose Island Branch</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr>             </table>         </div>         </div>`)[0];
                popup_836baec97c2ff636d15162b1987a7155.setContent(html_c2c4659859661eddf62a0a4456015ca6);
            
        

        poly_line_4ac0826f5829aa181cc4048398f3949e.bindPopup(popup_836baec97c2ff636d15162b1987a7155)
        ;

        
    
    
            var poly_line_b7eaa22e63b380979eb3e988b6abaf13 = L.polyline(
                [[41.9081676, -87.6518609], [41.9081119, -87.6518143], [41.9080772, -87.6517854], [41.9074643, -87.6512728]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_65f719a959a4a50f0a20240fb22b0625 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_502d25abd878bc08f385f98ed3bb6288 = $(`<div id=&quot;html_502d25abd878bc08f385f98ed3bb6288&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734236939 → 7155039937 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273622070&quot; target=&quot;_blank&quot;>273622070</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>92.11030001586266</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_65f719a959a4a50f0a20240fb22b0625.setContent(html_502d25abd878bc08f385f98ed3bb6288);
            
        

        poly_line_b7eaa22e63b380979eb3e988b6abaf13.bindPopup(popup_65f719a959a4a50f0a20240fb22b0625)
        ;

        
    
    
            var poly_line_55eb54b2acf6bebcfcdc1f65c4d9837f = L.polyline(
                [[41.9081676, -87.6518609], [41.9082443, -87.6519251], [41.9082668, -87.6519439], [41.9084119, -87.6520652]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a205992eedb8c17b94921173618c588d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_14d2fc3f47c976f675c7244085495a8b = $(`<div id=&quot;html_14d2fc3f47c976f675c7244085495a8b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734236939 → 12185013487 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273622070&quot; target=&quot;_blank&quot;>273622070</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>31.99629656927143</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_a205992eedb8c17b94921173618c588d.setContent(html_14d2fc3f47c976f675c7244085495a8b);
            
        

        poly_line_55eb54b2acf6bebcfcdc1f65c4d9837f.bindPopup(popup_a205992eedb8c17b94921173618c588d)
        ;

        
    
    
            var poly_line_52701c1e2e94a936ee3cecf9a2e9f991 = L.polyline(
                [[41.9081676, -87.6518609], [41.9081302, -87.651943], [41.9081058, -87.6519964], [41.907891, -87.6524673]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c5fba7d9b902dbbae6acad3fd7c867fc = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5ca9baaad794f7a6b594bc42df637bd6 = $(`<div id=&quot;html_5ca9baaad794f7a6b594bc42df637bd6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734236939 → 12185013447 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1413118080&quot; target=&quot;_blank&quot;>1413118080</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>58.85715019131396</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Blackhawk Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_c5fba7d9b902dbbae6acad3fd7c867fc.setContent(html_5ca9baaad794f7a6b594bc42df637bd6);
            
        

        poly_line_52701c1e2e94a936ee3cecf9a2e9f991.bindPopup(popup_c5fba7d9b902dbbae6acad3fd7c867fc)
        ;

        
    
    
            var poly_line_a2b8d24a7740645ae8e17f6f02330565 = L.polyline(
                [[41.9081676, -87.6518609], [41.9082136, -87.6517601], [41.9082268, -87.6517313], [41.9084272, -87.6512917]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f7ba46960224004e8578ff7a080b15c0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7ea10f29e6d2425624921c330c96b536 = $(`<div id=&quot;html_7ea10f29e6d2425624921c330c96b536&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734236939 → 2204462590 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1413118080&quot; target=&quot;_blank&quot;>1413118080</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>55.244509497537166</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Blackhawk Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_f7ba46960224004e8578ff7a080b15c0.setContent(html_7ea10f29e6d2425624921c330c96b536);
            
        

        poly_line_a2b8d24a7740645ae8e17f6f02330565.bindPopup(popup_f7ba46960224004e8578ff7a080b15c0)
        ;

        
    
    
            var poly_line_8a7ac60190aa475f9dea3439f47a7e2b = L.polyline(
                [[41.9050012, -87.6481233], [41.905038, -87.6481242]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_bf196fccf7789ec40073c61ece94c340 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a9c475fec5502f39e72423469d7cb7d3 = $(`<div id=&quot;html_a9c475fec5502f39e72423469d7cb7d3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734237297 → 4043041910 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/253740820&quot; target=&quot;_blank&quot;>253740820</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>4.092656875349353</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Halsted Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_bf196fccf7789ec40073c61ece94c340.setContent(html_a9c475fec5502f39e72423469d7cb7d3);
            
        

        poly_line_8a7ac60190aa475f9dea3439f47a7e2b.bindPopup(popup_bf196fccf7789ec40073c61ece94c340)
        ;

        
    
    
            var poly_line_d90209d321bd8f78980e85af68d87702 = L.polyline(
                [[41.9050012, -87.6481233], [41.9050033, -87.6479915], [41.9050031, -87.6479615], [41.9050053, -87.6477845]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9232578e682cbb178f2cddada9717c79 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8ebff19147f30f0f4ef32ca572661a86 = $(`<div id=&quot;html_8ebff19147f30f0f4ef32ca572661a86&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734237297 → 353809242 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59586637&quot; target=&quot;_blank&quot;>59586637</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>28.042814535647206</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Scott Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_9232578e682cbb178f2cddada9717c79.setContent(html_8ebff19147f30f0f4ef32ca572661a86);
            
        

        poly_line_d90209d321bd8f78980e85af68d87702.bindPopup(popup_9232578e682cbb178f2cddada9717c79)
        ;

        
    
    
            var poly_line_f8f3b5581ff2f08a7701d50fef6af9bf = L.polyline(
                [[41.9050012, -87.6481233], [41.9049408, -87.6481218], [41.9045748, -87.648113]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_372700d72b36a742e6351244c1a298eb = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4b6490d9fb03ef56ee6a6d30c5201b48 = $(`<div id=&quot;html_4b6490d9fb03ef56ee6a6d30c5201b48&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734237297 → 6776163351 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/253740820&quot; target=&quot;_blank&quot;>253740820</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>47.42124634462624</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Halsted Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_372700d72b36a742e6351244c1a298eb.setContent(html_4b6490d9fb03ef56ee6a6d30c5201b48);
            
        

        poly_line_f8f3b5581ff2f08a7701d50fef6af9bf.bindPopup(popup_372700d72b36a742e6351244c1a298eb)
        ;

        
    
    
            var poly_line_0fed507cd5319d23103895c4dfa030dc = L.polyline(
                [[41.9050321, -87.6486199], [41.9050337, -87.6484807]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_da5296437454eafa15b3085926bb8ef9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0818bd81746a68cde2ed5e2ccc2e5699 = $(`<div id=&quot;html_0818bd81746a68cde2ed5e2ccc2e5699&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734237804 → 5435936004 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59204089&quot; target=&quot;_blank&quot;>59204089</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>11.521184537941448</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Scott Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_da5296437454eafa15b3085926bb8ef9.setContent(html_0818bd81746a68cde2ed5e2ccc2e5699);
            
        

        poly_line_0fed507cd5319d23103895c4dfa030dc.bindPopup(popup_da5296437454eafa15b3085926bb8ef9)
        ;

        
    
    
            var poly_line_58faa722ec881358d71b6951c6319770 = L.polyline(
                [[41.9050321, -87.6486199], [41.9050228, -87.6490522], [41.9050327, -87.6491956]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d1463568141ad6fe7da3b2fa800b3baf = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d9a4488bd1b96e13193a912ef1a7673b = $(`<div id=&quot;html_d9a4488bd1b96e13193a912ef1a7673b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734237804 → 469358424 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59204089&quot; target=&quot;_blank&quot;>59204089</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>47.70924968893197</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Scott Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_d1463568141ad6fe7da3b2fa800b3baf.setContent(html_d9a4488bd1b96e13193a912ef1a7673b);
            
        

        poly_line_58faa722ec881358d71b6951c6319770.bindPopup(popup_d1463568141ad6fe7da3b2fa800b3baf)
        ;

        
    
    
            var poly_line_c16b6d5543abca79d1ecd4fa9b180ad2 = L.polyline(
                [[41.9050321, -87.6486199], [41.9050987, -87.6486459], [41.9052808, -87.648717], [41.9054496, -87.6487821], [41.90566, -87.6488631]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_cbe364f6cac2d3b87c8ae03278512170 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_187910e91107a8d9bbfd1780d57f34d4 = $(`<div id=&quot;html_187910e91107a8d9bbfd1780d57f34d4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734237804 → 2387206223 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230189126&quot; target=&quot;_blank&quot;>230189126</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>72.66249594346226</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_cbe364f6cac2d3b87c8ae03278512170.setContent(html_187910e91107a8d9bbfd1780d57f34d4);
            
        

        poly_line_c16b6d5543abca79d1ecd4fa9b180ad2.bindPopup(popup_cbe364f6cac2d3b87c8ae03278512170)
        ;

        
    
    
            var poly_line_745bfdd7c4066f2711e5b35bc0a57e71 = L.polyline(
                [[41.9097724, -87.653203], [41.9097862, -87.6529751], [41.9097969, -87.6524501]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8e709e825159ca9a17875e189309998a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_825f1c8380fdbbec807d1f2cb42b399f = $(`<div id=&quot;html_825f1c8380fdbbec807d1f2cb42b399f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734238174 → 2204462531 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24083761&quot; target=&quot;_blank&quot;>24083761</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>62.38191572624095</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Weed Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_8e709e825159ca9a17875e189309998a.setContent(html_825f1c8380fdbbec807d1f2cb42b399f);
            
        

        poly_line_745bfdd7c4066f2711e5b35bc0a57e71.bindPopup(popup_8e709e825159ca9a17875e189309998a)
        ;

        
    
    
            var poly_line_f6032afef0ecf57c69fcd443b00ddf2c = L.polyline(
                [[41.9097724, -87.653203], [41.9096992, -87.6531419], [41.9094639, -87.652945]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4a70b2031ffbf334dd35b0bceec3ddb8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_cc56f090911ad5383f04f765af59001a = $(`<div id=&quot;html_cc56f090911ad5383f04f765af59001a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734238174 → 2168537847 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273622070&quot; target=&quot;_blank&quot;>273622070</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>40.40493453432315</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_4a70b2031ffbf334dd35b0bceec3ddb8.setContent(html_cc56f090911ad5383f04f765af59001a);
            
        

        poly_line_f6032afef0ecf57c69fcd443b00ddf2c.bindPopup(popup_4a70b2031ffbf334dd35b0bceec3ddb8)
        ;

        
    
    
            var poly_line_f97f4d1a01a93e55e63074bf8a8df0b0 = L.polyline(
                [[41.9097724, -87.653203], [41.9099245, -87.6533302], [41.9102054, -87.6535651]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_bc8578a3b0ebb49d298c4202761f1bb5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4ea8526fda5b82f481572e0cb36f5fee = $(`<div id=&quot;html_4ea8526fda5b82f481572e0cb36f5fee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734238174 → 2168537861 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273622070&quot; target=&quot;_blank&quot;>273622070</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>56.71000762749311</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_bc8578a3b0ebb49d298c4202761f1bb5.setContent(html_4ea8526fda5b82f481572e0cb36f5fee);
            
        

        poly_line_f97f4d1a01a93e55e63074bf8a8df0b0.bindPopup(popup_bc8578a3b0ebb49d298c4202761f1bb5)
        ;

        
    
    
            var poly_line_175620359134ec4c09dd8a0be75a24a2 = L.polyline(
                [[41.9097724, -87.653203], [41.9097351, -87.6532845], [41.9094914, -87.6538145]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_02b78bc7a6cc2d9d265ccaceb8f27e67 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_bd4e09b237bdc0c6955b1d41832eb1b1 = $(`<div id=&quot;html_bd4e09b237bdc0c6955b1d41832eb1b1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734238174 → 2168537848 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/864831414&quot; target=&quot;_blank&quot;>864831414</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>59.4719079902632</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Weed Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_02b78bc7a6cc2d9d265ccaceb8f27e67.setContent(html_bd4e09b237bdc0c6955b1d41832eb1b1);
            
        

        poly_line_175620359134ec4c09dd8a0be75a24a2.bindPopup(popup_02b78bc7a6cc2d9d265ccaceb8f27e67)
        ;

        
    
    
            var poly_line_403aee7dac6cb114af0856fb279348ac = L.polyline(
                [[41.9097724, -87.653203], [41.9098773, -87.6531116], [41.9099275, -87.6530969], [41.910328, -87.6531073]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_764fb23e04d8f942810e0c41f9d28553 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_90e6f7b70d69ca0f9c74fc24433b2398 = $(`<div id=&quot;html_90e6f7b70d69ca0f9c74fc24433b2398&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734238174 → 2401648316 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1281243508&quot; target=&quot;_blank&quot;>1281243508</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>64.15685631733996</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Sheffield Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_764fb23e04d8f942810e0c41f9d28553.setContent(html_90e6f7b70d69ca0f9c74fc24433b2398);
            
        

        poly_line_403aee7dac6cb114af0856fb279348ac.bindPopup(popup_764fb23e04d8f942810e0c41f9d28553)
        ;

        
    
    
            var poly_line_dfece3f5abf197f11bd2d2c8a5df0960 = L.polyline(
                [[41.9071054, -87.6509745], [41.9070829, -87.6509539]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_16ac6845038b40bcb25fd5c151cdf07e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_335336d06550d90a39963627f0225d65 = $(`<div id=&quot;html_335336d06550d90a39963627f0225d65&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734238221 → 261162245 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273622070&quot; target=&quot;_blank&quot;>273622070</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>3.0274749295671866</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_16ac6845038b40bcb25fd5c151cdf07e.setContent(html_335336d06550d90a39963627f0225d65);
            
        

        poly_line_dfece3f5abf197f11bd2d2c8a5df0960.bindPopup(popup_16ac6845038b40bcb25fd5c151cdf07e)
        ;

        
    
    
            var poly_line_798ce99a484274371666a20fbb31b991 = L.polyline(
                [[41.9071054, -87.6509745], [41.907156, -87.651015], [41.9074643, -87.6512728]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e67d1cd2165b790a9662d7cbe0b5fa14 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9e430c1f8446f67923fc1c7c7abf111a = $(`<div id=&quot;html_9e430c1f8446f67923fc1c7c7abf111a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734238221 → 7155039937 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273622070&quot; target=&quot;_blank&quot;>273622070</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>46.926766810233815</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_e67d1cd2165b790a9662d7cbe0b5fa14.setContent(html_9e430c1f8446f67923fc1c7c7abf111a);
            
        

        poly_line_798ce99a484274371666a20fbb31b991.bindPopup(popup_e67d1cd2165b790a9662d7cbe0b5fa14)
        ;

        
    
    
            var poly_line_79cf918db9f5cc1ea86e00d3d1944a9b = L.polyline(
                [[41.9071054, -87.6509745], [41.9070697, -87.6510544], [41.9070571, -87.6510848], [41.9068141, -87.6516065], [41.9068445, -87.6516881], [41.9069084, -87.6518286]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_372e6107542b30146680f368b5096f7f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b53e5ff6fcb3022ba528edfd1f788ddc = $(`<div id=&quot;html_b53e5ff6fcb3022ba528edfd1f788ddc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734238221 → 11653264169 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1253661350&quot; target=&quot;_blank&quot;>1253661350</a>, <a href=&quot;https://www.openstreetmap.org/way/273622071&quot; target=&quot;_blank&quot;>273622071</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>['service', 'unclassified']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>82.70121576568266</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Eastman Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_372e6107542b30146680f368b5096f7f.setContent(html_b53e5ff6fcb3022ba528edfd1f788ddc);
            
        

        poly_line_79cf918db9f5cc1ea86e00d3d1944a9b.bindPopup(popup_372e6107542b30146680f368b5096f7f)
        ;

        
    
    
            var poly_line_05a2adc2efe28d7fdf787fd8b8e49e8b = L.polyline(
                [[41.8984505, -87.6519293], [41.8977168, -87.6519095]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d4eb94d33b8a0f2dda5e7e3768ac2841 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3d770181fc4c41ff1388f1e91f630623 = $(`<div id=&quot;html_3d770181fc4c41ff1388f1e91f630623&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734791867 → 7205297968 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24102349&quot; target=&quot;_blank&quot;>24102349</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>81.60029025297246</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Sangamon Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_d4eb94d33b8a0f2dda5e7e3768ac2841.setContent(html_3d770181fc4c41ff1388f1e91f630623);
            
        

        poly_line_05a2adc2efe28d7fdf787fd8b8e49e8b.bindPopup(popup_d4eb94d33b8a0f2dda5e7e3768ac2841)
        ;

        
    
    
            var poly_line_d03e72080393c9b678a4decd81812400 = L.polyline(
                [[41.8984505, -87.6519293], [41.8984669, -87.6511152], [41.8983621, -87.6509288], [41.8977821, -87.6509114], [41.8980177, -87.6516866]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_65872acff80b21591d05242817c8e836 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4e7a842168e1452353597fe67304f3e8 = $(`<div id=&quot;html_4e7a842168e1452353597fe67304f3e8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734791867 → 734791873 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59243046&quot; target=&quot;_blank&quot;>59243046</a>, <a href=&quot;https://www.openstreetmap.org/way/59243047&quot; target=&quot;_blank&quot;>59243047</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>['residential', 'service']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>220.5505406905965</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Chestnut Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr>             </table>         </div>         </div>`)[0];
                popup_65872acff80b21591d05242817c8e836.setContent(html_4e7a842168e1452353597fe67304f3e8);
            
        

        poly_line_d03e72080393c9b678a4decd81812400.bindPopup(popup_65872acff80b21591d05242817c8e836)
        ;

        
    
    
            var poly_line_d108bd6c3a44598f4d7aa0758f9d7eeb = L.polyline(
                [[41.8984505, -87.6519293], [41.8984365, -87.6522663], [41.8984745, -87.6524046], [41.898517, -87.6525589]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_cb0de002553e72128fbe42f961ab7e8a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c4ad510d42b9180cba50086332b96656 = $(`<div id=&quot;html_c4ad510d42b9180cba50086332b96656&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734791867 → 739187858 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59243046&quot; target=&quot;_blank&quot;>59243046</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>53.75408009422051</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Chestnut Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_cb0de002553e72128fbe42f961ab7e8a.setContent(html_c4ad510d42b9180cba50086332b96656);
            
        

        poly_line_d108bd6c3a44598f4d7aa0758f9d7eeb.bindPopup(popup_cb0de002553e72128fbe42f961ab7e8a)
        ;

        
    
    
            var poly_line_14eeaf84232652838ef4834a2a096d05 = L.polyline(
                [[41.8980177, -87.6516866], [41.8977821, -87.6509114], [41.8983621, -87.6509288], [41.8984669, -87.6511152], [41.8984505, -87.6519293]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_329588fb4c4e052b1a0905de486a12ab = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4e3feca85484c0ed6cc60d7c0e02267d = $(`<div id=&quot;html_4e3feca85484c0ed6cc60d7c0e02267d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 734791873 → 734791867 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59243046&quot; target=&quot;_blank&quot;>59243046</a>, <a href=&quot;https://www.openstreetmap.org/way/59243047&quot; target=&quot;_blank&quot;>59243047</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>['residential', 'service']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>220.5505406905965</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Chestnut Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr>             </table>         </div>         </div>`)[0];
                popup_329588fb4c4e052b1a0905de486a12ab.setContent(html_4e3feca85484c0ed6cc60d7c0e02267d);
            
        

        poly_line_14eeaf84232652838ef4834a2a096d05.bindPopup(popup_329588fb4c4e052b1a0905de486a12ab)
        ;

        
    
    
            var poly_line_cd3a0c6d812cda6d5e465dab08fef0b4 = L.polyline(
                [[41.898517, -87.6525589], [41.8984822, -87.6526563], [41.8984377, -87.652712], [41.8983981, -87.6527583], [41.898023, -87.6531448], [41.8974634, -87.6537295], [41.8973608, -87.6538138]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7cb7eafa0047759f3248232a1ad3d02a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_db4bc310ba1f73a05d5a86ffb3398908 = $(`<div id=&quot;html_db4bc310ba1f73a05d5a86ffb3398908&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 739187858 → 11270578646 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59586266&quot; target=&quot;_blank&quot;>59586266</a>, <a href=&quot;https://www.openstreetmap.org/way/35767298&quot; target=&quot;_blank&quot;>35767298</a>, <a href=&quot;https://www.openstreetmap.org/way/59586267&quot; target=&quot;_blank&quot;>59586267</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>166.30732411650933</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Ogden Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_7cb7eafa0047759f3248232a1ad3d02a.setContent(html_db4bc310ba1f73a05d5a86ffb3398908);
            
        

        poly_line_cd3a0c6d812cda6d5e465dab08fef0b4.bindPopup(popup_7cb7eafa0047759f3248232a1ad3d02a)
        ;

        
    
    
            var poly_line_99e6d24e37c56686136d0e8f22a2f512 = L.polyline(
                [[41.898517, -87.6525589], [41.8984745, -87.6524046], [41.8984365, -87.6522663], [41.8984505, -87.6519293]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8ce34295d3da185ebc6c3b54a7d3839d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e5660f166fe62aec7d25c78e18993122 = $(`<div id=&quot;html_e5660f166fe62aec7d25c78e18993122&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 739187858 → 734791867 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59243046&quot; target=&quot;_blank&quot;>59243046</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>53.75408009422051</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Chestnut Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_8ce34295d3da185ebc6c3b54a7d3839d.setContent(html_e5660f166fe62aec7d25c78e18993122);
            
        

        poly_line_99e6d24e37c56686136d0e8f22a2f512.bindPopup(popup_8ce34295d3da185ebc6c3b54a7d3839d)
        ;

        
    
    
            var poly_line_99a97eea3eba5831da51e1b51c1ad251 = L.polyline(
                [[41.9090551, -87.6611404], [41.9091207, -87.6611781], [41.9096737, -87.661514]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_497e97672655f2741aba1f73d4f54ca0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_97a460aa28c1620e7cd9ce8e0b90976b = $(`<div id=&quot;html_97a460aa28c1620e7cd9ce8e0b90976b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 739194076 → 13125728070 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435393424&quot; target=&quot;_blank&quot;>435393424</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>75.41510006428378</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_497e97672655f2741aba1f73d4f54ca0.setContent(html_97a460aa28c1620e7cd9ce8e0b90976b);
            
        

        poly_line_99a97eea3eba5831da51e1b51c1ad251.bindPopup(popup_497e97672655f2741aba1f73d4f54ca0)
        ;

        
    
    
            var poly_line_fd56cf45fbc9a5447df3d2596f3e6e19 = L.polyline(
                [[41.9090551, -87.6611404], [41.9089925, -87.6611019], [41.9088309, -87.6609933]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1c2250734d62c7ab4d9f6b55f1f1f95a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2607700420676c8fb10414f4eefb73b4 = $(`<div id=&quot;html_2607700420676c8fb10414f4eefb73b4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 739194076 → 5493211411 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1124448279&quot; target=&quot;_blank&quot;>1124448279</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>27.74640903402521</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_1c2250734d62c7ab4d9f6b55f1f1f95a.setContent(html_2607700420676c8fb10414f4eefb73b4);
            
        

        poly_line_fd56cf45fbc9a5447df3d2596f3e6e19.bindPopup(popup_1c2250734d62c7ab4d9f6b55f1f1f95a)
        ;

        
    
    
            var poly_line_36c9912554ae69574ef8288dd79f2013 = L.polyline(
                [[41.9090551, -87.6611404], [41.9090578, -87.6610118], [41.90906, -87.660749]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_088010ba8f3904abe1481381df2c849d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8dbd8bbfe4ab1f2a65332d9bb2a98e4e = $(`<div id=&quot;html_8dbd8bbfe4ab1f2a65332d9bb2a98e4e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 739194076 → 4621143835 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316291527&quot; target=&quot;_blank&quot;>1316291527</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>32.39475985496562</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Le Moyne Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_088010ba8f3904abe1481381df2c849d.setContent(html_8dbd8bbfe4ab1f2a65332d9bb2a98e4e);
            
        

        poly_line_36c9912554ae69574ef8288dd79f2013.bindPopup(popup_088010ba8f3904abe1481381df2c849d)
        ;

        
    
    
            var poly_line_6d3e50f2efdc96135bb2a417f76c6fc3 = L.polyline(
                [[41.8971376, -87.6579515], [41.8971366, -87.6580548], [41.8972267, -87.6580588], [41.8973492, -87.6580642], [41.8976796, -87.6585832], [41.8980502, -87.6585856], [41.8980972, -87.6584672], [41.8981089, -87.6584378]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3382898091368a557c9b550be44a18a8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_cfb9c033849961c045cfe6cf783bebd6 = $(`<div id=&quot;html_cfb9c033849961c045cfe6cf783bebd6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 739967903 → 12289051309 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24068825&quot; target=&quot;_blank&quot;>24068825</a>, <a href=&quot;https://www.openstreetmap.org/way/24068826&quot; target=&quot;_blank&quot;>24068826</a>, <a href=&quot;https://www.openstreetmap.org/way/24070828&quot; target=&quot;_blank&quot;>24070828</a>, <a href=&quot;https://www.openstreetmap.org/way/566479798&quot; target=&quot;_blank&quot;>566479798</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>['residential', 'service']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>143.802201951854</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Fry Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_3382898091368a557c9b550be44a18a8.setContent(html_cfb9c033849961c045cfe6cf783bebd6);
            
        

        poly_line_6d3e50f2efdc96135bb2a417f76c6fc3.bindPopup(popup_3382898091368a557c9b550be44a18a8)
        ;

        
    
    
            var poly_line_91612713e682eccfdc490e4692644927 = L.polyline(
                [[41.8971376, -87.6579515], [41.8971407, -87.6576336], [41.8971417, -87.6575304]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ac0c99e98fd042edaed7401eca0f246f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d6daad3526d58776180d9424036e6ea6 = $(`<div id=&quot;html_d6daad3526d58776180d9424036e6ea6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 739967903 → 261116820 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24070828&quot; target=&quot;_blank&quot;>24070828</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>34.85637240121205</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Fry Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_ac0c99e98fd042edaed7401eca0f246f.setContent(html_d6daad3526d58776180d9424036e6ea6);
            
        

        poly_line_91612713e682eccfdc490e4692644927.bindPopup(popup_ac0c99e98fd042edaed7401eca0f246f)
        ;

        
    
    
            var poly_line_d008d70d1e30c46083c3081feaaa0f75 = L.polyline(
                [[41.8984782, -87.6603199], [41.8980212, -87.6600576]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#f58231&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#f58231&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_99f4d3e5f28b44524f7c5a2f5cd576f3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c6520e427600f7996853bbdb9d21a76b = $(`<div id=&quot;html_c6520e427600f7996853bbdb9d21a76b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 739986153 → 261177793 (key 0)<br>                 <b>Component</b> 3<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24082319&quot; target=&quot;_blank&quot;>24082319</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>55.259256010357994</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elizabeth Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_99f4d3e5f28b44524f7c5a2f5cd576f3.setContent(html_c6520e427600f7996853bbdb9d21a76b);
            
        

        poly_line_d008d70d1e30c46083c3081feaaa0f75.bindPopup(popup_99f4d3e5f28b44524f7c5a2f5cd576f3)
        ;

        
    
    
            var poly_line_26d5d6fbb350b9a3cde5b753a9fb81f4 = L.polyline(
                [[41.9063948, -87.64719], [41.9064145, -87.6471909], [41.9064523, -87.6472116], [41.9064827, -87.6472482], [41.906502, -87.6472966], [41.906508, -87.6473508]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_11fedfa40671fd5912a6a1fcc37dcb73 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4d95c74b3af46e59986484264c1deb75 = $(`<div id=&quot;html_4d95c74b3af46e59986484264c1deb75&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 935894851 → 935894861 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/80207801&quot; target=&quot;_blank&quot;>80207801</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>junction</td><td style='padding:2px 6px;'>roundabout</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.348193638700067</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_11fedfa40671fd5912a6a1fcc37dcb73.setContent(html_4d95c74b3af46e59986484264c1deb75);
            
        

        poly_line_26d5d6fbb350b9a3cde5b753a9fb81f4.bindPopup(popup_11fedfa40671fd5912a6a1fcc37dcb73)
        ;

        
    
    
            var poly_line_22049e4edffd376c41ecdd1436aeaa19 = L.polyline(
                [[41.9063948, -87.64719], [41.9063961, -87.6471127], [41.9064051, -87.6465834]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_96f6981f9b40c2d794e24a90b97b467f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d9264f5fc55d6c6384db01f3e9f97bfa = $(`<div id=&quot;html_d9264f5fc55d6c6384db01f3e9f97bfa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 935894851 → 6528671786 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/221319850&quot; target=&quot;_blank&quot;>221319850</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>50.21254353630876</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Evergreen Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_96f6981f9b40c2d794e24a90b97b467f.setContent(html_d9264f5fc55d6c6384db01f3e9f97bfa);
            
        

        poly_line_22049e4edffd376c41ecdd1436aeaa19.bindPopup(popup_96f6981f9b40c2d794e24a90b97b467f)
        ;

        
    
    
            var poly_line_9c8ffac09eba9dbf0dbbd70eab79e268 = L.polyline(
                [[41.906508, -87.6473508], [41.9065013, -87.6473994], [41.9064839, -87.647443], [41.9064574, -87.6474773], [41.9064244, -87.647499], [41.906388, -87.6475061]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b4b2d17b3296e33112e67c17aa16a3f1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_46a70d9e7cb6069ad0db0337806c3623 = $(`<div id=&quot;html_46a70d9e7cb6069ad0db0337806c3623&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 935894861 → 935894905 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/80207801&quot; target=&quot;_blank&quot;>80207801</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>junction</td><td style='padding:2px 6px;'>roundabout</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.451156601429695</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_b4b2d17b3296e33112e67c17aa16a3f1.setContent(html_46a70d9e7cb6069ad0db0337806c3623);
            
        

        poly_line_9c8ffac09eba9dbf0dbbd70eab79e268.bindPopup(popup_b4b2d17b3296e33112e67c17aa16a3f1)
        ;

        
    
    
            var poly_line_67d90ed9b0a68d85e9220ea6a7c24b46 = L.polyline(
                [[41.906508, -87.6473508], [41.9065656, -87.6473528], [41.9067547, -87.6473594]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e5df1498d132e0a52f80f79380427b58 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f131f0720af2bf2525132c21a70c389b = $(`<div id=&quot;html_f131f0720af2bf2525132c21a70c389b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 935894861 → 261318537 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/80207802&quot; target=&quot;_blank&quot;>80207802</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>27.441057790957014</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Burling Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_e5df1498d132e0a52f80f79380427b58.setContent(html_f131f0720af2bf2525132c21a70c389b);
            
        

        poly_line_67d90ed9b0a68d85e9220ea6a7c24b46.bindPopup(popup_e5df1498d132e0a52f80f79380427b58)
        ;

        
    
    
            var poly_line_973299d53d48824c6b4a3fd59f5fd345 = L.polyline(
                [[41.906388, -87.6475061], [41.9063522, -87.6474981], [41.9063199, -87.6474759], [41.9062941, -87.6474417], [41.9062772, -87.6473986], [41.9062708, -87.6473507]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c08023826097a0fc1567222d1aa28041 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0b1fcb0ac5be9fad0de39ca627dcbea5 = $(`<div id=&quot;html_0b1fcb0ac5be9fad0de39ca627dcbea5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 935894905 → 935894907 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/80207801&quot; target=&quot;_blank&quot;>80207801</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>junction</td><td style='padding:2px 6px;'>roundabout</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.15850955367847</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_c08023826097a0fc1567222d1aa28041.setContent(html_0b1fcb0ac5be9fad0de39ca627dcbea5);
            
        

        poly_line_973299d53d48824c6b4a3fd59f5fd345.bindPopup(popup_c08023826097a0fc1567222d1aa28041)
        ;

        
    
    
            var poly_line_0c5d140576803b1a0510bc63a3cc0b62 = L.polyline(
                [[41.906388, -87.6475061], [41.9063869, -87.6475888], [41.9063812, -87.6480419], [41.9063797, -87.6481566]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f8a10e06ca73dbadca8412cfd5d50ba3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_51a4d6c852f7bf3833071a688c627601 = $(`<div id=&quot;html_51a4d6c852f7bf3833071a688c627601&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 935894905 → 264431935 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316473819&quot; target=&quot;_blank&quot;>1316473819</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>53.84037398899579</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Evergreen Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_f8a10e06ca73dbadca8412cfd5d50ba3.setContent(html_51a4d6c852f7bf3833071a688c627601);
            
        

        poly_line_0c5d140576803b1a0510bc63a3cc0b62.bindPopup(popup_f8a10e06ca73dbadca8412cfd5d50ba3)
        ;

        
    
    
            var poly_line_d791370453d2daff63660834cbe82695 = L.polyline(
                [[41.9062708, -87.6473507], [41.9062203, -87.647349], [41.9059962, -87.6473416]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_842dbe4760c7b06d81d10d94d48a92f0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c2d4b86372e7f6f1387e3d15ab320b9c = $(`<div id=&quot;html_c2d4b86372e7f6f1387e3d15ab320b9c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 935894907 → 8410435300 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24099035&quot; target=&quot;_blank&quot;>24099035</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>30.543455855569498</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Burling Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_842dbe4760c7b06d81d10d94d48a92f0.setContent(html_c2d4b86372e7f6f1387e3d15ab320b9c);
            
        

        poly_line_d791370453d2daff63660834cbe82695.bindPopup(popup_842dbe4760c7b06d81d10d94d48a92f0)
        ;

        
    
    
            var poly_line_34160e418909a016e569cfba4cd61412 = L.polyline(
                [[41.9062708, -87.6473507], [41.906275, -87.6473045], [41.9062889, -87.647262], [41.9063114, -87.6472266], [41.9063405, -87.6472015], [41.9063657, -87.6471906], [41.9063948, -87.64719]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fb08f210c5add375b41608b4981effe4 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_41284d257a405f20e75f16b1f67e60a4 = $(`<div id=&quot;html_41284d257a405f20e75f16b1f67e60a4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 935894907 → 935894851 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/80207801&quot; target=&quot;_blank&quot;>80207801</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>junction</td><td style='padding:2px 6px;'>roundabout</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.570961964541127</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_fb08f210c5add375b41608b4981effe4.setContent(html_41284d257a405f20e75f16b1f67e60a4);
            
        

        poly_line_34160e418909a016e569cfba4cd61412.bindPopup(popup_fb08f210c5add375b41608b4981effe4)
        ;

        
    
    
            var poly_line_b598e9706f54808c100f601f65926647 = L.polyline(
                [[41.9070954, -87.6442035], [41.9070152, -87.6442035]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5ae8b803cadbabdd31c6f626bcf7852d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_61ddb125acad007b8e561e744ce7fdb1 = $(`<div id=&quot;html_61ddb125acad007b8e561e744ce7fdb1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 935894931 → 12049414910 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/80207803&quot; target=&quot;_blank&quot;>80207803</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>8.917845715423928</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_5ae8b803cadbabdd31c6f626bcf7852d.setContent(html_61ddb125acad007b8e561e744ce7fdb1);
            
        

        poly_line_b598e9706f54808c100f601f65926647.bindPopup(popup_5ae8b803cadbabdd31c6f626bcf7852d)
        ;

        
    
    
            var poly_line_8018b47b75a938f77a40f410f3a19af7 = L.polyline(
                [[41.9070954, -87.6442035], [41.9069226, -87.6439578]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c03af8e0ba429b2d4aa51b3f9a74bdd2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_672b853c1a48fd9c24bd133a7886babc = $(`<div id=&quot;html_672b853c1a48fd9c24bd133a7886babc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 935894931 → 12049414909 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435397258&quot; target=&quot;_blank&quot;>435397258</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>27.97537092884475</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Clybourn Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_c03af8e0ba429b2d4aa51b3f9a74bdd2.setContent(html_672b853c1a48fd9c24bd133a7886babc);
            
        

        poly_line_8018b47b75a938f77a40f410f3a19af7.bindPopup(popup_c03af8e0ba429b2d4aa51b3f9a74bdd2)
        ;

        
    
    
            var poly_line_26e5b48637f0d99783d81d7f25aaa511 = L.polyline(
                [[41.9070954, -87.6442035], [41.9071762, -87.6443173], [41.9075642, -87.6448639]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d01c5b327590593e9074a454db12b7ff = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d07bcf396154cc47ef599407063473df = $(`<div id=&quot;html_d07bcf396154cc47ef599407063473df&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 935894931 → 12049414904 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435397258&quot; target=&quot;_blank&quot;>435397258</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>75.52535380312072</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Clybourn Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_d01c5b327590593e9074a454db12b7ff.setContent(html_d07bcf396154cc47ef599407063473df);
            
        

        poly_line_26e5b48637f0d99783d81d7f25aaa511.bindPopup(popup_d01c5b327590593e9074a454db12b7ff)
        ;

        
    
    
            var poly_line_324d17f84cb6b6a58fb3ffca62037a5a = L.polyline(
                [[41.9060043, -87.6442032], [41.9063621, -87.6442033], [41.9064087, -87.6442033]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5659923aeae48c028d3081a0f8f6c92d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ecba0ad60802c59d43af3b49ca6f5071 = $(`<div id=&quot;html_ecba0ad60802c59d43af3b49ca6f5071&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 935895010 → 261260007 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/80207803&quot; target=&quot;_blank&quot;>80207803</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>44.967292718578946</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_5659923aeae48c028d3081a0f8f6c92d.setContent(html_ecba0ad60802c59d43af3b49ca6f5071);
            
        

        poly_line_324d17f84cb6b6a58fb3ffca62037a5a.bindPopup(popup_5659923aeae48c028d3081a0f8f6c92d)
        ;

        
    
    
            var poly_line_68c6d9a4b145f2a6a476fd87c32746b5 = L.polyline(
                [[41.9043515, -87.6592599], [41.9043836, -87.6591871]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1c002b6dd9e884b5ae0c7b82e3db8e3f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b8b53f0a85e2515089e331ca13a43572 = $(`<div id=&quot;html_b8b53f0a85e2515089e331ca13a43572&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 1699464698 → 11967979353 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626391&quot; target=&quot;_blank&quot;>571626391</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.002746459709931</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_1c002b6dd9e884b5ae0c7b82e3db8e3f.setContent(html_b8b53f0a85e2515089e331ca13a43572);
            
        

        poly_line_68c6d9a4b145f2a6a476fd87c32746b5.bindPopup(popup_1c002b6dd9e884b5ae0c7b82e3db8e3f)
        ;

        
    
    
            var poly_line_8e5d0fef2d0463a42e597c21047b931c = L.polyline(
                [[41.9043515, -87.6592599], [41.9042435, -87.6591641], [41.903997, -87.6588925]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_074534c4bb51c6e2562b6fc9cb5c28a5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6f308155279ceea6dc9f37178afe3519 = $(`<div id=&quot;html_6f308155279ceea6dc9f37178afe3519&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 1699464698 → 4337248984 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1290800461&quot; target=&quot;_blank&quot;>1290800461</a>, <a href=&quot;https://www.openstreetmap.org/way/221317663&quot; target=&quot;_blank&quot;>221317663</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>3</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>49.837370921636094</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_074534c4bb51c6e2562b6fc9cb5c28a5.setContent(html_6f308155279ceea6dc9f37178afe3519);
            
        

        poly_line_8e5d0fef2d0463a42e597c21047b931c.bindPopup(popup_074534c4bb51c6e2562b6fc9cb5c28a5)
        ;

        
    
    
            var poly_line_facf4fb06a89f3429b650c0817cdfc5e = L.polyline(
                [[41.9043515, -87.6592599], [41.9044593, -87.6593377], [41.9045421, -87.6593892], [41.9045923, -87.6594144]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3fae561400f73641a1e433c79d8c246d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3cc3f626e8217fa513255d87e4015ee8 = $(`<div id=&quot;html_3cc3f626e8217fa513255d87e4015ee8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 1699464698 → 5493314491 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/221317663&quot; target=&quot;_blank&quot;>221317663</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>3</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>29.71103445489419</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_3fae561400f73641a1e433c79d8c246d.setContent(html_3cc3f626e8217fa513255d87e4015ee8);
            
        

        poly_line_facf4fb06a89f3429b650c0817cdfc5e.bindPopup(popup_3fae561400f73641a1e433c79d8c246d)
        ;

        
    
    
            var poly_line_110858aa40ff95ae955f194e4590d1a5 = L.polyline(
                [[41.9049696, -87.6595455], [41.9053784, -87.6596202]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_84e1ff0b92adaacf1fac148d5a60803c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_272dc844d3cdeb39f7cf2a88415d6dc3 = $(`<div id=&quot;html_272dc844d3cdeb39f7cf2a88415d6dc3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 1699464718 → 2565051779 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/221317663&quot; target=&quot;_blank&quot;>221317663</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>3</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>45.87498785627522</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_84e1ff0b92adaacf1fac148d5a60803c.setContent(html_272dc844d3cdeb39f7cf2a88415d6dc3);
            
        

        poly_line_110858aa40ff95ae955f194e4590d1a5.bindPopup(popup_84e1ff0b92adaacf1fac148d5a60803c)
        ;

        
    
    
            var poly_line_9db7eb9fdb0f8cac45a9b7c695e86c77 = L.polyline(
                [[41.9049696, -87.6595455], [41.9049648, -87.6596133]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_68b3cb19d4e8c0f4d47e9d4e616d7520 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0f85326eed718d38258f292dec27dde9 = $(`<div id=&quot;html_0f85326eed718d38258f292dec27dde9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 1699464718 → 11967979356 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/621443145&quot; target=&quot;_blank&quot;>621443145</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>5.636276526001517</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_68b3cb19d4e8c0f4d47e9d4e616d7520.setContent(html_0f85326eed718d38258f292dec27dde9);
            
        

        poly_line_9db7eb9fdb0f8cac45a9b7c695e86c77.bindPopup(popup_68b3cb19d4e8c0f4d47e9d4e616d7520)
        ;

        
    
    
            var poly_line_10ca24822d0f4bbd521ac95ff4c7e454 = L.polyline(
                [[41.9049696, -87.6595455], [41.9048885, -87.6595295], [41.9048166, -87.659508], [41.9047622, -87.6594886], [41.9046861, -87.6594585], [41.9046283, -87.6594324]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d5ff144ec8865c6775a35b90bc4f2803 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d8d97cff41fd6265e9d50a1f57979437 = $(`<div id=&quot;html_d8d97cff41fd6265e9d50a1f57979437&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 1699464718 → 12187280047 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/221317663&quot; target=&quot;_blank&quot;>221317663</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>3</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>39.16489001688555</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_d5ff144ec8865c6775a35b90bc4f2803.setContent(html_d8d97cff41fd6265e9d50a1f57979437);
            
        

        poly_line_10ca24822d0f4bbd521ac95ff4c7e454.bindPopup(popup_d5ff144ec8865c6775a35b90bc4f2803)
        ;

        
    
    
            var poly_line_306e7ea4fb7bce497bff0bcebf8b3e1b = L.polyline(
                [[41.9062112, -87.6597699], [41.9062104, -87.6598414]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_01805c419a314740335ec743a8eb44b8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7f386106bfa6f18a02d2f3ab7b3c2602 = $(`<div id=&quot;html_7f386106bfa6f18a02d2f3ab7b3c2602&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 1699464731 → 11967979359 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/249978862&quot; target=&quot;_blank&quot;>249978862</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>5.917703660293868</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Evergreen Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_01805c419a314740335ec743a8eb44b8.setContent(html_7f386106bfa6f18a02d2f3ab7b3c2602);
            
        

        poly_line_306e7ea4fb7bce497bff0bcebf8b3e1b.bindPopup(popup_01805c419a314740335ec743a8eb44b8)
        ;

        
    
    
            var poly_line_702b194899728e7fbad2199cb1c701d0 = L.polyline(
                [[41.9062112, -87.6597699], [41.9060893, -87.6597553], [41.9056367, -87.6596675]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_05f5a9ab693eec89cb6eaa41f159f235 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d44c7f3f953f4d72c5eee0bb774cf29d = $(`<div id=&quot;html_d44c7f3f953f4d72c5eee0bb774cf29d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 1699464731 → 12187280008 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/221317663&quot; target=&quot;_blank&quot;>221317663</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>3</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>64.45713089578102</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_05f5a9ab693eec89cb6eaa41f159f235.setContent(html_d44c7f3f953f4d72c5eee0bb774cf29d);
            
        

        poly_line_702b194899728e7fbad2199cb1c701d0.bindPopup(popup_05f5a9ab693eec89cb6eaa41f159f235)
        ;

        
    
    
            var poly_line_2dc6420ce4c133fe3ff77a9fe67ada16 = L.polyline(
                [[41.9062112, -87.6597699], [41.9064076, -87.6597822], [41.9066884, -87.6598337]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_395a89ff2d45dbea7cf68bc0954a752c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e2e38987a90c31f4d270c650327731a5 = $(`<div id=&quot;html_e2e38987a90c31f4d270c650327731a5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 1699464731 → 12187280017 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/221317663&quot; target=&quot;_blank&quot;>221317663</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>3</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>53.3755268656309</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_395a89ff2d45dbea7cf68bc0954a752c.setContent(html_e2e38987a90c31f4d270c650327731a5);
            
        

        poly_line_2dc6420ce4c133fe3ff77a9fe67ada16.bindPopup(popup_395a89ff2d45dbea7cf68bc0954a752c)
        ;

        
    
    
            var poly_line_a045ec394df9bf20d93e5eef8f0c0850 = L.polyline(
                [[41.900352, -87.6457385], [41.9005696, -87.6458954]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_41f44e02492cea345bebc733bf093e97 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_14149c3b74fd4473ff7fa3f4e483d482 = $(`<div id=&quot;html_14149c3b74fd4473ff7fa3f4e483d482&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 1977388009 → 1977388033 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/186983209&quot; target=&quot;_blank&quot;>186983209</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>27.46039333445955</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_41f44e02492cea345bebc733bf093e97.setContent(html_14149c3b74fd4473ff7fa3f4e483d482);
            
        

        poly_line_a045ec394df9bf20d93e5eef8f0c0850.bindPopup(popup_41f44e02492cea345bebc733bf093e97)
        ;

        
    
    
            var poly_line_98210b199ad51d5fc04f6103899924a7 = L.polyline(
                [[41.9005436, -87.6459842], [41.9005696, -87.6458954]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_11881feb9fe997f1ad53383830b7ac54 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_17cef3a7c49566b2a2a0d7c91a0c9cf8 = $(`<div id=&quot;html_17cef3a7c49566b2a2a0d7c91a0c9cf8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 1977388012 → 1977388033 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/31623033&quot; target=&quot;_blank&quot;>31623033</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.897556017610514</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_11881feb9fe997f1ad53383830b7ac54.setContent(html_17cef3a7c49566b2a2a0d7c91a0c9cf8);
            
        

        poly_line_98210b199ad51d5fc04f6103899924a7.bindPopup(popup_11881feb9fe997f1ad53383830b7ac54)
        ;

        
    
    
            var poly_line_fbdf1b6e6718112c938d1fa7584670bc = L.polyline(
                [[41.8997713, -87.6452326], [41.8997001, -87.6454217], [41.900017, -87.6455836], [41.900053, -87.6454656], [41.8997713, -87.6452326]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_468c6d1682c01cb598a7848e7972c2cb = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_75c28a84bef0a10c527ef3916e4b0aba = $(`<div id=&quot;html_75c28a84bef0a10c527ef3916e4b0aba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 1977388024 → 1977388024 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/186983207&quot; target=&quot;_blank&quot;>186983207</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>102.57703407911842</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_468c6d1682c01cb598a7848e7972c2cb.setContent(html_75c28a84bef0a10c527ef3916e4b0aba);
            
        

        poly_line_fbdf1b6e6718112c938d1fa7584670bc.bindPopup(popup_468c6d1682c01cb598a7848e7972c2cb)
        ;

        
    
    
            var poly_line_d27247907ae887eef9d3fe50eabc73c4 = L.polyline(
                [[41.8997713, -87.6452326], [41.900053, -87.6454656], [41.900017, -87.6455836], [41.8997001, -87.6454217], [41.8997713, -87.6452326]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_08ac9e4d7e7e2d22672a009e25555ef1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b23dc8257c35de8aee69490551c49731 = $(`<div id=&quot;html_b23dc8257c35de8aee69490551c49731&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 1977388024 → 1977388024 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/186983207&quot; target=&quot;_blank&quot;>186983207</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>102.5770340791184</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_08ac9e4d7e7e2d22672a009e25555ef1.setContent(html_b23dc8257c35de8aee69490551c49731);
            
        

        poly_line_d27247907ae887eef9d3fe50eabc73c4.bindPopup(popup_08ac9e4d7e7e2d22672a009e25555ef1)
        ;

        
    
    
            var poly_line_d6f4c7daabe70d730a86b491c466ea0a = L.polyline(
                [[41.8997713, -87.6452326], [41.8998606, -87.645015], [41.8998954, -87.6449324]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_de2c8bae4de28146ca6e0b168cb4d347 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0714e2933e628b8f8930de1b9b2f848f = $(`<div id=&quot;html_0714e2933e628b8f8930de1b9b2f848f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 1977388024 → 1977388034 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/186983207&quot; target=&quot;_blank&quot;>186983207</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>28.420988825328124</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_de2c8bae4de28146ca6e0b168cb4d347.setContent(html_0714e2933e628b8f8930de1b9b2f848f);
            
        

        poly_line_d6f4c7daabe70d730a86b491c466ea0a.bindPopup(popup_de2c8bae4de28146ca6e0b168cb4d347)
        ;

        
    
    
            var poly_line_a7efd56da99129485a186bf39face785 = L.polyline(
                [[41.9005696, -87.6458954], [41.9005436, -87.6459842]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0a1ed41b37b343cfdae0c93d85183edf = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c72149ad43309b69efaa88d35bc257a8 = $(`<div id=&quot;html_c72149ad43309b69efaa88d35bc257a8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 1977388033 → 1977388012 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/31623033&quot; target=&quot;_blank&quot;>31623033</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.897556017610514</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_0a1ed41b37b343cfdae0c93d85183edf.setContent(html_c72149ad43309b69efaa88d35bc257a8);
            
        

        poly_line_a7efd56da99129485a186bf39face785.bindPopup(popup_0a1ed41b37b343cfdae0c93d85183edf)
        ;

        
    
    
            var poly_line_7398f7c7b12dee2bf4226a78b5142ec8 = L.polyline(
                [[41.9005696, -87.6458954], [41.900352, -87.6457385]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2d1654e9990016653036c1e599edd89b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4a7d453f60e2321aa15da7e687e58659 = $(`<div id=&quot;html_4a7d453f60e2321aa15da7e687e58659&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 1977388033 → 1977388009 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/186983209&quot; target=&quot;_blank&quot;>186983209</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>27.46039333445955</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_2d1654e9990016653036c1e599edd89b.setContent(html_4a7d453f60e2321aa15da7e687e58659);
            
        

        poly_line_7398f7c7b12dee2bf4226a78b5142ec8.bindPopup(popup_2d1654e9990016653036c1e599edd89b)
        ;

        
    
    
            var poly_line_60599c4fb6bf09bb0e9ef791701bdb29 = L.polyline(
                [[41.9005696, -87.6458954], [41.9006729, -87.6456975], [41.9007094, -87.6456276]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4b13dc76cbec64edad186a63ab149826 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fd6edb5fbdc6435e87bdb72ed38a189b = $(`<div id=&quot;html_fd6edb5fbdc6435e87bdb72ed38a189b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 1977388033 → 353804422 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/31623033&quot; target=&quot;_blank&quot;>31623033</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>27.071915721315026</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_4b13dc76cbec64edad186a63ab149826.setContent(html_fd6edb5fbdc6435e87bdb72ed38a189b);
            
        

        poly_line_60599c4fb6bf09bb0e9ef791701bdb29.bindPopup(popup_4b13dc76cbec64edad186a63ab149826)
        ;

        
    
    
            var poly_line_1bc5393da319d01f87d2953e7bb04370 = L.polyline(
                [[41.8998954, -87.6449324], [41.8998708, -87.6449096], [41.899824, -87.6448642], [41.8998108, -87.6448542], [41.8997398, -87.6447901]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_de1d06aed2188be39be2e4c82aef7826 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_67211f522c6cec94e8ed5ef429e19265 = $(`<div id=&quot;html_67211f522c6cec94e8ed5ef429e19265&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 1977388034 → 261230962 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/130807195&quot; target=&quot;_blank&quot;>130807195</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.938625119981022</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_de1d06aed2188be39be2e4c82aef7826.setContent(html_67211f522c6cec94e8ed5ef429e19265);
            
        

        poly_line_1bc5393da319d01f87d2953e7bb04370.bindPopup(popup_de1d06aed2188be39be2e4c82aef7826)
        ;

        
    
    
            var poly_line_486f1a89d7ccd620a475d89c622970e3 = L.polyline(
                [[41.8998954, -87.6449324], [41.899957, -87.6449847], [41.89999, -87.644915], [41.8999917, -87.644911], [41.9002876, -87.6442638]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fd02f9ee1cccf3d5f642d63a6dcf08aa = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9adbd4cc078a18719967c814064956f8 = $(`<div id=&quot;html_9adbd4cc078a18719967c814064956f8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 1977388034 → 353804439 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/130807195&quot; target=&quot;_blank&quot;>130807195</a>, <a href=&quot;https://www.openstreetmap.org/way/31623043&quot; target=&quot;_blank&quot;>31623043</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>78.18366586897243</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr>             </table>         </div>         </div>`)[0];
                popup_fd02f9ee1cccf3d5f642d63a6dcf08aa.setContent(html_9adbd4cc078a18719967c814064956f8);
            
        

        poly_line_486f1a89d7ccd620a475d89c622970e3.bindPopup(popup_fd02f9ee1cccf3d5f642d63a6dcf08aa)
        ;

        
    
    
            var poly_line_66a830f946e2956d50af64401ed6bff0 = L.polyline(
                [[41.8998954, -87.6449324], [41.8998606, -87.645015], [41.8997713, -87.6452326]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5d4dc1792786ecb04738a9313b61aad8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_11ce8655831141492666484aad504c80 = $(`<div id=&quot;html_11ce8655831141492666484aad504c80&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 1977388034 → 1977388024 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/186983207&quot; target=&quot;_blank&quot;>186983207</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>28.420988825328124</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_5d4dc1792786ecb04738a9313b61aad8.setContent(html_11ce8655831141492666484aad504c80);
            
        

        poly_line_66a830f946e2956d50af64401ed6bff0.bindPopup(popup_5d4dc1792786ecb04738a9313b61aad8)
        ;

        
    
    
            var poly_line_4bcb0ac46f1ae71e0a1ddf04c2f0b02f = L.polyline(
                [[41.9110264, -87.6516654], [41.9110745, -87.6516302]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_72f4395fedfd182b34f6338052ad9d8e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d5181a747719d66dd9a985b552e636d7 = $(`<div id=&quot;html_d5181a747719d66dd9a985b552e636d7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2109658704 → 2109658707 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/668572521&quot; target=&quot;_blank&quot;>668572521</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>access</td><td style='padding:2px 6px;'>customers</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>6.090202734415443</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_72f4395fedfd182b34f6338052ad9d8e.setContent(html_d5181a747719d66dd9a985b552e636d7);
            
        

        poly_line_4bcb0ac46f1ae71e0a1ddf04c2f0b02f.bindPopup(popup_72f4395fedfd182b34f6338052ad9d8e)
        ;

        
    
    
            var poly_line_93fc2962a38f1ad9f53c225d1e877ee4 = L.polyline(
                [[41.9110264, -87.6516654], [41.910952, -87.651662], [41.9108705, -87.6516591]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_cd7649d94507bb1486656ff662e0e60c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ca5358ed4558ca7e6863078473f6a90c = $(`<div id=&quot;html_ca5358ed4558ca7e6863078473f6a90c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2109658704 → 11891975125 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/201015478&quot; target=&quot;_blank&quot;>201015478</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>access</td><td style='padding:2px 6px;'>customers</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>17.343272992340722</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_cd7649d94507bb1486656ff662e0e60c.setContent(html_ca5358ed4558ca7e6863078473f6a90c);
            
        

        poly_line_93fc2962a38f1ad9f53c225d1e877ee4.bindPopup(popup_cd7649d94507bb1486656ff662e0e60c)
        ;

        
    
    
            var poly_line_36a052b2c100a861c8234a73520ef5eb = L.polyline(
                [[41.9110745, -87.6516302], [41.9110826, -87.651136]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4cb8daae303e40f1a90e85497e68f0b2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a4e0e1093c56611a5e289259a8da7b65 = $(`<div id=&quot;html_a4e0e1093c56611a5e289259a8da7b65&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2109658707 → 2109658710 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/201015484&quot; target=&quot;_blank&quot;>201015484</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>access</td><td style='padding:2px 6px;'>customers</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>40.904682832196094</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_4cb8daae303e40f1a90e85497e68f0b2.setContent(html_a4e0e1093c56611a5e289259a8da7b65);
            
        

        poly_line_36a052b2c100a861c8234a73520ef5eb.bindPopup(popup_4cb8daae303e40f1a90e85497e68f0b2)
        ;

        
    
    
            var poly_line_bf41b25ba7ea51d5a6d1e7b0cf64ca64 = L.polyline(
                [[41.9110745, -87.6516302], [41.9112436, -87.651635]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_48e7e744610c724fc13c4e0632e33fd3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_859d09787c481912b41acc9b0e9dabc1 = $(`<div id=&quot;html_859d09787c481912b41acc9b0e9dabc1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2109658707 → 2109658729 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/201015484&quot; target=&quot;_blank&quot;>201015484</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>access</td><td style='padding:2px 6px;'>customers</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.807283384675642</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_48e7e744610c724fc13c4e0632e33fd3.setContent(html_859d09787c481912b41acc9b0e9dabc1);
            
        

        poly_line_bf41b25ba7ea51d5a6d1e7b0cf64ca64.bindPopup(popup_48e7e744610c724fc13c4e0632e33fd3)
        ;

        
    
    
            var poly_line_ff1e027b210eb223101b89a2747ebc0a = L.polyline(
                [[41.9110745, -87.6516302], [41.9110264, -87.6516654]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5d88915305c528f48a6a37d53eb23ad1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5d44b31642e6fbb5746792fb6a54698c = $(`<div id=&quot;html_5d44b31642e6fbb5746792fb6a54698c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2109658707 → 2109658704 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/668572521&quot; target=&quot;_blank&quot;>668572521</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>access</td><td style='padding:2px 6px;'>customers</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>6.090202734415443</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_5d88915305c528f48a6a37d53eb23ad1.setContent(html_5d44b31642e6fbb5746792fb6a54698c);
            
        

        poly_line_ff1e027b210eb223101b89a2747ebc0a.bindPopup(popup_5d88915305c528f48a6a37d53eb23ad1)
        ;

        
    
    
            var poly_line_613c9a8b424d1cd4a449f2d22e26030b = L.polyline(
                [[41.9110826, -87.651136], [41.9110745, -87.6516302]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f58bbfc475353b7460ac94b398fff787 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_da3f3372a655e9a561123a103e5f0906 = $(`<div id=&quot;html_da3f3372a655e9a561123a103e5f0906&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2109658710 → 2109658707 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/201015484&quot; target=&quot;_blank&quot;>201015484</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>access</td><td style='padding:2px 6px;'>customers</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>40.904682832196094</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_f58bbfc475353b7460ac94b398fff787.setContent(html_da3f3372a655e9a561123a103e5f0906);
            
        

        poly_line_613c9a8b424d1cd4a449f2d22e26030b.bindPopup(popup_f58bbfc475353b7460ac94b398fff787)
        ;

        
    
    
            var poly_line_e8e1b167d8ee90a58b6b6fd209d2e4a7 = L.polyline(
                [[41.9110826, -87.651136], [41.9110831, -87.6511051]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_90fdaef7aedc0adfeb676e938fdca858 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_245452d775fba1e0869112e53fb4b686 = $(`<div id=&quot;html_245452d775fba1e0869112e53fb4b686&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2109658710 → 6228387907 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1177634756&quot; target=&quot;_blank&quot;>1177634756</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>access</td><td style='padding:2px 6px;'>customers</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>2.5575614197592604</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_90fdaef7aedc0adfeb676e938fdca858.setContent(html_245452d775fba1e0869112e53fb4b686);
            
        

        poly_line_e8e1b167d8ee90a58b6b6fd209d2e4a7.bindPopup(popup_90fdaef7aedc0adfeb676e938fdca858)
        ;

        
    
    
            var poly_line_954a0ea316ca4e89c15aa55c0ff9b3c6 = L.polyline(
                [[41.9110826, -87.651136], [41.9109605, -87.6511275], [41.9108786, -87.6511199]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_316b46208add3a24f9fe79deddde64fb = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_699a4378ed0f48d368998b7cf3d13715 = $(`<div id=&quot;html_699a4378ed0f48d368998b7cf3d13715&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2109658710 → 261147600 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/668572522&quot; target=&quot;_blank&quot;>668572522</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>access</td><td style='padding:2px 6px;'>customers</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.723693580508126</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_316b46208add3a24f9fe79deddde64fb.setContent(html_699a4378ed0f48d368998b7cf3d13715);
            
        

        poly_line_954a0ea316ca4e89c15aa55c0ff9b3c6.bindPopup(popup_316b46208add3a24f9fe79deddde64fb)
        ;

        
    
    
            var poly_line_0c0c5f56fbb6289a4c33caebbd5abbec = L.polyline(
                [[41.9110873, -87.6507894], [41.9110997, -87.6507603], [41.9111076, -87.6507453], [41.9111168, -87.6507357], [41.9111495, -87.6507365], [41.911187, -87.6507374], [41.9112223, -87.6507382], [41.9112557, -87.6507391]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e38831a8495c4925ec1f6c0bf4ae8ad9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_14133b4b54f7f33aa3b76a28e8707926 = $(`<div id=&quot;html_14133b4b54f7f33aa3b76a28e8707926&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2109658713 → 2109658727 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1177634757&quot; target=&quot;_blank&quot;>1177634757</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>access</td><td style='padding:2px 6px;'>customers</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.038244251393806</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_e38831a8495c4925ec1f6c0bf4ae8ad9.setContent(html_14133b4b54f7f33aa3b76a28e8707926);
            
        

        poly_line_0c0c5f56fbb6289a4c33caebbd5abbec.bindPopup(popup_e38831a8495c4925ec1f6c0bf4ae8ad9)
        ;

        
    
    
            var poly_line_7dbd4c8fdef7bebe5735034aea030b27 = L.polyline(
                [[41.9112557, -87.6507391], [41.9112507, -87.6511109]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9787bdcae17441f155e59d447ed91b6f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_eaf46faed187c631f67f3e2c8851dc37 = $(`<div id=&quot;html_eaf46faed187c631f67f3e2c8851dc37&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2109658727 → 6228387908 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/201015490&quot; target=&quot;_blank&quot;>201015490</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>access</td><td style='padding:2px 6px;'>customers</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>30.77117496263666</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_9787bdcae17441f155e59d447ed91b6f.setContent(html_eaf46faed187c631f67f3e2c8851dc37);
            
        

        poly_line_7dbd4c8fdef7bebe5735034aea030b27.bindPopup(popup_9787bdcae17441f155e59d447ed91b6f)
        ;

        
    
    
            var poly_line_95ff5f8423ad7934d69b01641076ca49 = L.polyline(
                [[41.9112436, -87.651635], [41.9110745, -87.6516302]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7cb0a6bec5fda7dc617178a2e3a950ac = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_90e03d7fade190c05b026c70f0955aec = $(`<div id=&quot;html_90e03d7fade190c05b026c70f0955aec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2109658729 → 2109658707 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/201015484&quot; target=&quot;_blank&quot;>201015484</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>access</td><td style='padding:2px 6px;'>customers</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.807283384675642</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_7cb0a6bec5fda7dc617178a2e3a950ac.setContent(html_90e03d7fade190c05b026c70f0955aec);
            
        

        poly_line_95ff5f8423ad7934d69b01641076ca49.bindPopup(popup_7cb0a6bec5fda7dc617178a2e3a950ac)
        ;

        
    
    
            var poly_line_ae90928cad9943ff17285eab1aa9dfce = L.polyline(
                [[41.9112436, -87.651635], [41.9112507, -87.6511109]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_20d0ae54d13729ff4e4aa51c4514c680 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_31c693f1a92d435fd06f91ce8146d829 = $(`<div id=&quot;html_31c693f1a92d435fd06f91ce8146d829&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2109658729 → 6228387908 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/201015490&quot; target=&quot;_blank&quot;>201015490</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>access</td><td style='padding:2px 6px;'>customers</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>43.37604411617858</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_20d0ae54d13729ff4e4aa51c4514c680.setContent(html_31c693f1a92d435fd06f91ce8146d829);
            
        

        poly_line_ae90928cad9943ff17285eab1aa9dfce.bindPopup(popup_20d0ae54d13729ff4e4aa51c4514c680)
        ;

        
    
    
            var poly_line_5e4414a0374d3e670daca17b743ffa6e = L.polyline(
                [[41.9112998, -87.6531359], [41.9109276, -87.6531235], [41.910848, -87.6531209]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_36d3817264dbf78ee51aaeb7954f7280 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2471e301eaff17e36fec8fd5a1dae0c7 = $(`<div id=&quot;html_2471e301eaff17e36fec8fd5a1dae0c7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2109658731 → 250756058 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1414844940&quot; target=&quot;_blank&quot;>1414844940</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>50.25327117737836</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Sheffield Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_36d3817264dbf78ee51aaeb7954f7280.setContent(html_2471e301eaff17e36fec8fd5a1dae0c7);
            
        

        poly_line_5e4414a0374d3e670daca17b743ffa6e.bindPopup(popup_36d3817264dbf78ee51aaeb7954f7280)
        ;

        
    
    
            var poly_line_7bd5aaba1cd1ba84dafee21bdd28ddbd = L.polyline(
                [[41.9011825, -87.6446018], [41.9009775, -87.6444272]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_108317757869ef6eb9d8574ff455fbb8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7b366bda3e4b0464d8227eaa1c57dc50 = $(`<div id=&quot;html_7b366bda3e4b0464d8227eaa1c57dc50&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2111444788 → 10866693144 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24080413&quot; target=&quot;_blank&quot;>24080413</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>26.989316337371857</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Crosby Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_108317757869ef6eb9d8574ff455fbb8.setContent(html_7b366bda3e4b0464d8227eaa1c57dc50);
            
        

        poly_line_7bd5aaba1cd1ba84dafee21bdd28ddbd.bindPopup(popup_108317757869ef6eb9d8574ff455fbb8)
        ;

        
    
    
            var poly_line_558d05eb6bafd73892bcc33081fa245c = L.polyline(
                [[41.9011825, -87.6446018], [41.9012345, -87.6444817], [41.9012609, -87.644412], [41.9012669, -87.6439914], [41.901176, -87.6439954], [41.9010344, -87.644313], [41.9009775, -87.6444272]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_08069d8b0073605c8f6c385c1bac9258 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_595e5c220828f1de0c8c2cfe8b15edf8 = $(`<div id=&quot;html_595e5c220828f1de0c8c2cfe8b15edf8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2111444788 → 10866693144 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/201195897&quot; target=&quot;_blank&quot;>201195897</a>, <a href=&quot;https://www.openstreetmap.org/way/1168444258&quot; target=&quot;_blank&quot;>1168444258</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>104.91496158949762</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_08069d8b0073605c8f6c385c1bac9258.setContent(html_595e5c220828f1de0c8c2cfe8b15edf8);
            
        

        poly_line_558d05eb6bafd73892bcc33081fa245c.bindPopup(popup_08069d8b0073605c8f6c385c1bac9258)
        ;

        
    
    
            var poly_line_0c562c930cc5cc354fd8a0e10900c832 = L.polyline(
                [[41.9011825, -87.6446018], [41.9013147, -87.6447126], [41.901334, -87.6447287], [41.9014127, -87.644794]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d7ac90bcf675b78750c749abf5ca0749 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_70f104731cf0f53f1049242dae3eeca6 = $(`<div id=&quot;html_70f104731cf0f53f1049242dae3eeca6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2111444788 → 3408107714 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24080413&quot; target=&quot;_blank&quot;>24080413</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>30.137097264922502</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Crosby Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_d7ac90bcf675b78750c749abf5ca0749.setContent(html_70f104731cf0f53f1049242dae3eeca6);
            
        

        poly_line_0c562c930cc5cc354fd8a0e10900c832.bindPopup(popup_d7ac90bcf675b78750c749abf5ca0749)
        ;

        
    
    
            var poly_line_43793bc584a0f9fa94473496a62f4718 = L.polyline(
                [[41.899546, -87.6489203], [41.8995778, -87.6489814]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f0348f0dfa11cfdc8e29df30a4742704 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_415485a723ca8d7559ef68b76c3df7d1 = $(`<div id=&quot;html_415485a723ca8d7559ef68b76c3df7d1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537771 → 12191955752 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24096218&quot; target=&quot;_blank&quot;>24096218</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>6.170541233526667</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_f0348f0dfa11cfdc8e29df30a4742704.setContent(html_415485a723ca8d7559ef68b76c3df7d1);
            
        

        poly_line_43793bc584a0f9fa94473496a62f4718.bindPopup(popup_f0348f0dfa11cfdc8e29df30a4742704)
        ;

        
    
    
            var poly_line_739e68159ea386923a9c0adcc0ccb424 = L.polyline(
                [[41.899546, -87.6489203], [41.899429, -87.648698], [41.8993796, -87.648604]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a8c3b447adc9c6222157716de22357e9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b5f728f53a1595c10000ef6092577b50 = $(`<div id=&quot;html_b5f728f53a1595c10000ef6092577b50&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537771 → 4267128734 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24096218&quot; target=&quot;_blank&quot;>24096218</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>32.057213097550985</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_a8c3b447adc9c6222157716de22357e9.setContent(html_b5f728f53a1595c10000ef6092577b50);
            
        

        poly_line_739e68159ea386923a9c0adcc0ccb424.bindPopup(popup_a8c3b447adc9c6222157716de22357e9)
        ;

        
    
    
            var poly_line_59de8e7abd0089b8b33c1b71b6a9dbda = L.polyline(
                [[41.899546, -87.6489203], [41.8995989, -87.6488788], [41.8996881, -87.6487899]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0268cfe1b566f21116773d82ca0e3a49 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f8f055787d090c0bbc18e53f1ccc9bcb = $(`<div id=&quot;html_f8f055787d090c0bbc18e53f1ccc9bcb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537771 → 2168537775 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804521&quot; target=&quot;_blank&quot;>206804521</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.161291011895273</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_0268cfe1b566f21116773d82ca0e3a49.setContent(html_f8f055787d090c0bbc18e53f1ccc9bcb);
            
        

        poly_line_59de8e7abd0089b8b33c1b71b6a9dbda.bindPopup(popup_0268cfe1b566f21116773d82ca0e3a49)
        ;

        
    
    
            var poly_line_ecca6dcee85ed5bbc8e592bcfa43b645 = L.polyline(
                [[41.8996881, -87.6487899], [41.8997682, -87.6487164]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6dd43de2e6ac760f8f5e76b5653a0de3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_61fa1491c6e721040bf32d85612181bc = $(`<div id=&quot;html_61fa1491c6e721040bf32d85612181bc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537775 → 2168537779 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804521&quot; target=&quot;_blank&quot;>206804521</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>10.785854478637491</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_6dd43de2e6ac760f8f5e76b5653a0de3.setContent(html_61fa1491c6e721040bf32d85612181bc);
            
        

        poly_line_ecca6dcee85ed5bbc8e592bcfa43b645.bindPopup(popup_6dd43de2e6ac760f8f5e76b5653a0de3)
        ;

        
    
    
            var poly_line_0cfc85bb8ad1419dcdd8bcc62868ed05 = L.polyline(
                [[41.8996881, -87.6487899], [41.8996191, -87.6486527], [41.8996995, -87.6485798], [41.8997682, -87.6487164]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d73ff2459588119bc360a99dbeb64769 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0492ae9ecbc734f84fc7a7886f917d62 = $(`<div id=&quot;html_0492ae9ecbc734f84fc7a7886f917d62&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537775 → 2168537779 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804548&quot; target=&quot;_blank&quot;>206804548</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>38.13437190749779</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_d73ff2459588119bc360a99dbeb64769.setContent(html_0492ae9ecbc734f84fc7a7886f917d62);
            
        

        poly_line_0cfc85bb8ad1419dcdd8bcc62868ed05.bindPopup(popup_d73ff2459588119bc360a99dbeb64769)
        ;

        
    
    
            var poly_line_835cb04c34557ee33a28005926a3d932 = L.polyline(
                [[41.8996881, -87.6487899], [41.8995989, -87.6488788], [41.899546, -87.6489203]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0f4057c6bb66ec4f44c5357eae8d16f9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_098ad36c0a5d1391d24426acc7fdec57 = $(`<div id=&quot;html_098ad36c0a5d1391d24426acc7fdec57&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537775 → 2168537771 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804521&quot; target=&quot;_blank&quot;>206804521</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.161291011895273</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_0f4057c6bb66ec4f44c5357eae8d16f9.setContent(html_098ad36c0a5d1391d24426acc7fdec57);
            
        

        poly_line_835cb04c34557ee33a28005926a3d932.bindPopup(popup_0f4057c6bb66ec4f44c5357eae8d16f9)
        ;

        
    
    
            var poly_line_e1e4a66a4547c0336e12fc03a80b9630 = L.polyline(
                [[41.8996881, -87.6487899], [41.9004114, -87.6500764], [41.9004928, -87.6499008]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_19bc8b615cf816672598dfe8b7948275 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c46824ff55fbc35d667d42f7a6117230 = $(`<div id=&quot;html_c46824ff55fbc35d667d42f7a6117230&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537775 → 2168537794 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804521&quot; target=&quot;_blank&quot;>206804521</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>150.5589786614307</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_19bc8b615cf816672598dfe8b7948275.setContent(html_c46824ff55fbc35d667d42f7a6117230);
            
        

        poly_line_e1e4a66a4547c0336e12fc03a80b9630.bindPopup(popup_19bc8b615cf816672598dfe8b7948275)
        ;

        
    
    
            var poly_line_18f333d8588ebafd7e7b01ddac895cdb = L.polyline(
                [[41.8997682, -87.6487164], [41.8996881, -87.6487899]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d1c149198862d101f2e89f69c11bd81d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_04916e7cc78d80c38c5c8ea0a7cb4aab = $(`<div id=&quot;html_04916e7cc78d80c38c5c8ea0a7cb4aab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537779 → 2168537775 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804521&quot; target=&quot;_blank&quot;>206804521</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>10.785854478637491</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_d1c149198862d101f2e89f69c11bd81d.setContent(html_04916e7cc78d80c38c5c8ea0a7cb4aab);
            
        

        poly_line_18f333d8588ebafd7e7b01ddac895cdb.bindPopup(popup_d1c149198862d101f2e89f69c11bd81d)
        ;

        
    
    
            var poly_line_6dbc7bf372df144e622d912e96433d4d = L.polyline(
                [[41.8997682, -87.6487164], [41.8996995, -87.6485798], [41.8996191, -87.6486527], [41.8996881, -87.6487899]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4d3b4d374dba7a145c82008c2ca8f94d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0c9195afec8ca1de50f3c6a140e165c7 = $(`<div id=&quot;html_0c9195afec8ca1de50f3c6a140e165c7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537779 → 2168537775 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804548&quot; target=&quot;_blank&quot;>206804548</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>38.13437190749779</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_4d3b4d374dba7a145c82008c2ca8f94d.setContent(html_0c9195afec8ca1de50f3c6a140e165c7);
            
        

        poly_line_6dbc7bf372df144e622d912e96433d4d.bindPopup(popup_4d3b4d374dba7a145c82008c2ca8f94d)
        ;

        
    
    
            var poly_line_4aa9a673bb0a4f72cebbf48fb754cb08 = L.polyline(
                [[41.8997682, -87.6487164], [41.8997992, -87.648688], [41.900059, -87.6491085]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_061a26f21797194e0ea105944854cb6c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_35fecbc9d18152c5e6eb0e205af05431 = $(`<div id=&quot;html_35fecbc9d18152c5e6eb0e205af05431&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537779 → 2168537784 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804521&quot; target=&quot;_blank&quot;>206804521</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>49.40200607797436</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_061a26f21797194e0ea105944854cb6c.setContent(html_35fecbc9d18152c5e6eb0e205af05431);
            
        

        poly_line_4aa9a673bb0a4f72cebbf48fb754cb08.bindPopup(popup_061a26f21797194e0ea105944854cb6c)
        ;

        
    
    
            var poly_line_650e9d7233ad0b507030430f04517bdf = L.polyline(
                [[41.900059, -87.6491085], [41.9004928, -87.6499008]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_cd0c6d8bfb1eb319afeb7b5c96ed2921 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_66742cc6d9451e7aeecb6604638fbd5d = $(`<div id=&quot;html_66742cc6d9451e7aeecb6604638fbd5d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537784 → 2168537794 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804528&quot; target=&quot;_blank&quot;>206804528</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>81.40412771969876</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_cd0c6d8bfb1eb319afeb7b5c96ed2921.setContent(html_66742cc6d9451e7aeecb6604638fbd5d);
            
        

        poly_line_650e9d7233ad0b507030430f04517bdf.bindPopup(popup_cd0c6d8bfb1eb319afeb7b5c96ed2921)
        ;

        
    
    
            var poly_line_c923f354fd5611276011cd95f85ed69d = L.polyline(
                [[41.900059, -87.6491085], [41.9002322, -87.6490952], [41.9005806, -87.6497114]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9ba5bbbc747abaa256fbb5372d28c8e2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2b528702c30f2f7e7d5643f05db51d52 = $(`<div id=&quot;html_2b528702c30f2f7e7d5643f05db51d52&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537784 → 2168537796 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804521&quot; target=&quot;_blank&quot;>206804521</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>83.33482207900185</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_9ba5bbbc747abaa256fbb5372d28c8e2.setContent(html_2b528702c30f2f7e7d5643f05db51d52);
            
        

        poly_line_c923f354fd5611276011cd95f85ed69d.bindPopup(popup_9ba5bbbc747abaa256fbb5372d28c8e2)
        ;

        
    
    
            var poly_line_29aece44bf603da9bd296dbbbb2ae5eb = L.polyline(
                [[41.900059, -87.6491085], [41.8997992, -87.648688], [41.8997682, -87.6487164]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c123d45fb1281a998bfafc094ba93757 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1a1fa6c42e4c65435d0615fda47330cd = $(`<div id=&quot;html_1a1fa6c42e4c65435d0615fda47330cd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537784 → 2168537779 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804521&quot; target=&quot;_blank&quot;>206804521</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>49.40200607797436</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_c123d45fb1281a998bfafc094ba93757.setContent(html_1a1fa6c42e4c65435d0615fda47330cd);
            
        

        poly_line_29aece44bf603da9bd296dbbbb2ae5eb.bindPopup(popup_c123d45fb1281a998bfafc094ba93757)
        ;

        
    
    
            var poly_line_a421987f3bb4b8cf0ee193680d43b0a8 = L.polyline(
                [[41.9004928, -87.6499008], [41.9005806, -87.6497114]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_861e92a8a1dfd11630f5a670679fdbba = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_723886876d6f8f5435683ce995633f98 = $(`<div id=&quot;html_723886876d6f8f5435683ce995633f98&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537794 → 2168537796 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804521&quot; target=&quot;_blank&quot;>206804521</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.46701685602107</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_861e92a8a1dfd11630f5a670679fdbba.setContent(html_723886876d6f8f5435683ce995633f98);
            
        

        poly_line_a421987f3bb4b8cf0ee193680d43b0a8.bindPopup(popup_861e92a8a1dfd11630f5a670679fdbba)
        ;

        
    
    
            var poly_line_27433bbf12818893e6b8b83896f1951b = L.polyline(
                [[41.9004928, -87.6499008], [41.900059, -87.6491085]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_03b204f73b4930c09ab9fd394cf67684 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fbf69c161a4ce9fc9aee95a49d30c7e3 = $(`<div id=&quot;html_fbf69c161a4ce9fc9aee95a49d30c7e3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537794 → 2168537784 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804528&quot; target=&quot;_blank&quot;>206804528</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>81.40412771969876</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_03b204f73b4930c09ab9fd394cf67684.setContent(html_fbf69c161a4ce9fc9aee95a49d30c7e3);
            
        

        poly_line_27433bbf12818893e6b8b83896f1951b.bindPopup(popup_03b204f73b4930c09ab9fd394cf67684)
        ;

        
    
    
            var poly_line_6bdc99ee44b4a6db020d217e4aa6bf6e = L.polyline(
                [[41.9004928, -87.6499008], [41.9004114, -87.6500764], [41.8996881, -87.6487899]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_662d2740e1ac40740579a309df9bf930 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_22fb318678df27511d27c5804768b4ea = $(`<div id=&quot;html_22fb318678df27511d27c5804768b4ea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537794 → 2168537775 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804521&quot; target=&quot;_blank&quot;>206804521</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>150.5589786614307</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_662d2740e1ac40740579a309df9bf930.setContent(html_22fb318678df27511d27c5804768b4ea);
            
        

        poly_line_6bdc99ee44b4a6db020d217e4aa6bf6e.bindPopup(popup_662d2740e1ac40740579a309df9bf930)
        ;

        
    
    
            var poly_line_971e250550d9964e5aa10f996388f5b2 = L.polyline(
                [[41.9005806, -87.6497114], [41.9004928, -87.6499008]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f3f915dd2f53f5f5189711a9ba9feb5a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ba9801f9f2556de14a6a7dd49517a1f3 = $(`<div id=&quot;html_ba9801f9f2556de14a6a7dd49517a1f3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537796 → 2168537794 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804521&quot; target=&quot;_blank&quot;>206804521</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.46701685602107</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_f3f915dd2f53f5f5189711a9ba9feb5a.setContent(html_ba9801f9f2556de14a6a7dd49517a1f3);
            
        

        poly_line_971e250550d9964e5aa10f996388f5b2.bindPopup(popup_f3f915dd2f53f5f5189711a9ba9feb5a)
        ;

        
    
    
            var poly_line_6ae0127d5d381ea5d75027b51f6bea2d = L.polyline(
                [[41.9005806, -87.6497114], [41.9006574, -87.6495422]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3eedcfff167ab50d927e72dd1a0a51a0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6ff69d0304c8579c6822098a454f82f5 = $(`<div id=&quot;html_6ff69d0304c8579c6822098a454f82f5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537796 → 2168537798 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804534&quot; target=&quot;_blank&quot;>206804534</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>16.402006027387426</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_3eedcfff167ab50d927e72dd1a0a51a0.setContent(html_6ff69d0304c8579c6822098a454f82f5);
            
        

        poly_line_6ae0127d5d381ea5d75027b51f6bea2d.bindPopup(popup_3eedcfff167ab50d927e72dd1a0a51a0)
        ;

        
    
    
            var poly_line_f1b529a02491e6dc7b212910a0aceda1 = L.polyline(
                [[41.9005806, -87.6497114], [41.9002322, -87.6490952], [41.900059, -87.6491085]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_98e1508022cace4172c9b4ad8b7671a5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_80f2b6ceea157b9c579af241f631a892 = $(`<div id=&quot;html_80f2b6ceea157b9c579af241f631a892&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537796 → 2168537784 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804521&quot; target=&quot;_blank&quot;>206804521</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>83.33482207900185</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_98e1508022cace4172c9b4ad8b7671a5.setContent(html_80f2b6ceea157b9c579af241f631a892);
            
        

        poly_line_f1b529a02491e6dc7b212910a0aceda1.bindPopup(popup_98e1508022cace4172c9b4ad8b7671a5)
        ;

        
    
    
            var poly_line_bd015cfc45b7f4e8c46941ed6905005f = L.polyline(
                [[41.9006574, -87.6495422], [41.9005806, -87.6497114]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8f1e8c8ac8df3fa9900d4be4361c8868 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8afa9a5105d2345af3d4d4d193f213f0 = $(`<div id=&quot;html_8afa9a5105d2345af3d4d4d193f213f0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537798 → 2168537796 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804534&quot; target=&quot;_blank&quot;>206804534</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>16.402006027387426</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_8f1e8c8ac8df3fa9900d4be4361c8868.setContent(html_8afa9a5105d2345af3d4d4d193f213f0);
            
        

        poly_line_bd015cfc45b7f4e8c46941ed6905005f.bindPopup(popup_8f1e8c8ac8df3fa9900d4be4361c8868)
        ;

        
    
    
            var poly_line_b3a86809e42274d384247aa11920d857 = L.polyline(
                [[41.9027467, -87.6502541], [41.9028503, -87.6500378]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ff2b7c362156e8c29fe179c7f6dee88a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_229a281067149f144a45fdb5a35909a3 = $(`<div id=&quot;html_229a281067149f144a45fdb5a35909a3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537800 → 2168537802 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804551&quot; target=&quot;_blank&quot;>206804551</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.28738192522127</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_ff2b7c362156e8c29fe179c7f6dee88a.setContent(html_229a281067149f144a45fdb5a35909a3);
            
        

        poly_line_b3a86809e42274d384247aa11920d857.bindPopup(popup_ff2b7c362156e8c29fe179c7f6dee88a)
        ;

        
    
    
            var poly_line_1d5b83c04f21f5deff84d48a15af8677 = L.polyline(
                [[41.9027467, -87.6502541], [41.9031769, -87.6506105], [41.9034862, -87.6508668], [41.9036014, -87.6509581]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f0b0ef5668be22ce16f42c7d6e877e2f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1259aa4e73a4021c38698b0f688ec226 = $(`<div id=&quot;html_1259aa4e73a4021c38698b0f688ec226&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537800 → 264432667 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1125567618&quot; target=&quot;_blank&quot;>1125567618</a>, <a href=&quot;https://www.openstreetmap.org/way/24372003&quot; target=&quot;_blank&quot;>24372003</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>111.47831330651628</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Hooker Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_f0b0ef5668be22ce16f42c7d6e877e2f.setContent(html_1259aa4e73a4021c38698b0f688ec226);
            
        

        poly_line_1d5b83c04f21f5deff84d48a15af8677.bindPopup(popup_f0b0ef5668be22ce16f42c7d6e877e2f)
        ;

        
    
    
            var poly_line_c72906bbd34050153a68ad26835ed6a3 = L.polyline(
                [[41.9027467, -87.6502541], [41.9012182, -87.6490063], [41.9011584, -87.648965]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f5216d8e988fd936a71715872d343e66 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f9f009aa0c0c77e5d595bd662d4cc296 = $(`<div id=&quot;html_f9f009aa0c0c77e5d595bd662d4cc296&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537800 → 261126254 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24372003&quot; target=&quot;_blank&quot;>24372003</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>206.35226323891584</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Hooker Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_f5216d8e988fd936a71715872d343e66.setContent(html_f9f009aa0c0c77e5d595bd662d4cc296);
            
        

        poly_line_c72906bbd34050153a68ad26835ed6a3.bindPopup(popup_f5216d8e988fd936a71715872d343e66)
        ;

        
    
    
            var poly_line_0053638d5f77023e5d771509346408b8 = L.polyline(
                [[41.9028503, -87.6500378], [41.9029444, -87.6498329]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_01c85891d486996266fdbf222124f238 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_13bc97a919dedda3e389762e7f13bcf5 = $(`<div id=&quot;html_13bc97a919dedda3e389762e7f13bcf5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537802 → 2168537804 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804551&quot; target=&quot;_blank&quot;>206804551</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.925906877565293</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_01c85891d486996266fdbf222124f238.setContent(html_13bc97a919dedda3e389762e7f13bcf5);
            
        

        poly_line_0053638d5f77023e5d771509346408b8.bindPopup(popup_01c85891d486996266fdbf222124f238)
        ;

        
    
    
            var poly_line_b03c964158ad1a1f78e9ffb27b9a7578 = L.polyline(
                [[41.9028503, -87.6500378], [41.9027467, -87.6502541]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6af01d038a5eb1b5265114471637e272 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_638c57f054aaff20d666f6e8d3374cb9 = $(`<div id=&quot;html_638c57f054aaff20d666f6e8d3374cb9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537802 → 2168537800 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804551&quot; target=&quot;_blank&quot;>206804551</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.28738192522127</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_6af01d038a5eb1b5265114471637e272.setContent(html_638c57f054aaff20d666f6e8d3374cb9);
            
        

        poly_line_b03c964158ad1a1f78e9ffb27b9a7578.bindPopup(popup_6af01d038a5eb1b5265114471637e272)
        ;

        
    
    
            var poly_line_ffc8c3d1cc559cd863603d1f638e58ee = L.polyline(
                [[41.9028503, -87.6500378], [41.9034308, -87.6505154], [41.9034349, -87.6502511]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_958c2b249a80bb8d8dbdc8fe4485be14 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9391dcbfe85e63641a641562e36c2c95 = $(`<div id=&quot;html_9391dcbfe85e63641a641562e36c2c95&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537802 → 2168537810 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804551&quot; target=&quot;_blank&quot;>206804551</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>97.56719947950087</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_958c2b249a80bb8d8dbdc8fe4485be14.setContent(html_9391dcbfe85e63641a641562e36c2c95);
            
        

        poly_line_ffc8c3d1cc559cd863603d1f638e58ee.bindPopup(popup_958c2b249a80bb8d8dbdc8fe4485be14)
        ;

        
    
    
            var poly_line_fe77f2942c010c8a34e049fca3e91278 = L.polyline(
                [[41.9029444, -87.6498329], [41.9034349, -87.6502511]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_caaa5144d16385efad1defa1e9386d19 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7f82c70b25a6f18f834e1eb9c52febce = $(`<div id=&quot;html_7f82c70b25a6f18f834e1eb9c52febce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537804 → 2168537810 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804531&quot; target=&quot;_blank&quot;>206804531</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>64.59566001784422</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_caaa5144d16385efad1defa1e9386d19.setContent(html_7f82c70b25a6f18f834e1eb9c52febce);
            
        

        poly_line_fe77f2942c010c8a34e049fca3e91278.bindPopup(popup_caaa5144d16385efad1defa1e9386d19)
        ;

        
    
    
            var poly_line_90e0a714c00bcf3140c224eb4ec801d3 = L.polyline(
                [[41.9029444, -87.6498329], [41.9030233, -87.6496612], [41.9034386, -87.6500102], [41.9034349, -87.6502511]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9196762af3ce8a19ff7e1957b77207ba = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fe69376127b663a38dd4dc83f8a8d485 = $(`<div id=&quot;html_fe69376127b663a38dd4dc83f8a8d485&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537804 → 2168537810 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804551&quot; target=&quot;_blank&quot;>206804551</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>91.10900423867307</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_9196762af3ce8a19ff7e1957b77207ba.setContent(html_fe69376127b663a38dd4dc83f8a8d485);
            
        

        poly_line_90e0a714c00bcf3140c224eb4ec801d3.bindPopup(popup_9196762af3ce8a19ff7e1957b77207ba)
        ;

        
    
    
            var poly_line_dbf3022ce2e3efbfce034b9f7153a06e = L.polyline(
                [[41.9029444, -87.6498329], [41.9028503, -87.6500378]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b2b5057c2deb59947e5585c34c025f24 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e9f1d1d0511e188c758da86ad4a12023 = $(`<div id=&quot;html_e9f1d1d0511e188c758da86ad4a12023&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537804 → 2168537802 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804551&quot; target=&quot;_blank&quot;>206804551</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.925906877565293</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_b2b5057c2deb59947e5585c34c025f24.setContent(html_e9f1d1d0511e188c758da86ad4a12023);
            
        

        poly_line_dbf3022ce2e3efbfce034b9f7153a06e.bindPopup(popup_b2b5057c2deb59947e5585c34c025f24)
        ;

        
    
    
            var poly_line_96f8213bc2933c43b345c3db4bc8b914 = L.polyline(
                [[41.9034349, -87.6502511], [41.9029444, -87.6498329]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1e98d80801f2fabf1f0c1f95684a529f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a394dd6e2ef2e5a256ca000ea9b98b88 = $(`<div id=&quot;html_a394dd6e2ef2e5a256ca000ea9b98b88&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537810 → 2168537804 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804531&quot; target=&quot;_blank&quot;>206804531</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>64.59566001784422</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_1e98d80801f2fabf1f0c1f95684a529f.setContent(html_a394dd6e2ef2e5a256ca000ea9b98b88);
            
        

        poly_line_96f8213bc2933c43b345c3db4bc8b914.bindPopup(popup_1e98d80801f2fabf1f0c1f95684a529f)
        ;

        
    
    
            var poly_line_92c8ec8a8955f19ae5345a91c438b3f0 = L.polyline(
                [[41.9034349, -87.6502511], [41.9034386, -87.6500102], [41.9030233, -87.6496612], [41.9029444, -87.6498329]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0f19b4fc18998c5fb6d2f49bb03a55b2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9c006f0cad7e602171b030183026cb68 = $(`<div id=&quot;html_9c006f0cad7e602171b030183026cb68&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537810 → 2168537804 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804551&quot; target=&quot;_blank&quot;>206804551</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>91.10900423867307</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_0f19b4fc18998c5fb6d2f49bb03a55b2.setContent(html_9c006f0cad7e602171b030183026cb68);
            
        

        poly_line_92c8ec8a8955f19ae5345a91c438b3f0.bindPopup(popup_0f19b4fc18998c5fb6d2f49bb03a55b2)
        ;

        
    
    
            var poly_line_52f9f9703099ef41a8c42786a3327591 = L.polyline(
                [[41.9034349, -87.6502511], [41.9034308, -87.6505154], [41.9028503, -87.6500378]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d12106b6685e8b2e09e30c7041994625 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_39cd31015d2de7d66341a36600a8ee94 = $(`<div id=&quot;html_39cd31015d2de7d66341a36600a8ee94&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537810 → 2168537802 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804551&quot; target=&quot;_blank&quot;>206804551</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>97.56719947950087</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_d12106b6685e8b2e09e30c7041994625.setContent(html_39cd31015d2de7d66341a36600a8ee94);
            
        

        poly_line_52f9f9703099ef41a8c42786a3327591.bindPopup(popup_d12106b6685e8b2e09e30c7041994625)
        ;

        
    
    
            var poly_line_d50199ae8c548b4c9ba6661b315fe610 = L.polyline(
                [[41.9090772, -87.6535126], [41.9091471, -87.653572], [41.9091806, -87.6535956]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7c20dbe2890285e4b0b1b74ed18e5ad1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_bac98837cf4f7accf7c3080621a92f55 = $(`<div id=&quot;html_bac98837cf4f7accf7c3080621a92f55&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537839 → 2168537841 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804526&quot; target=&quot;_blank&quot;>206804526</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>13.40235408949187</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_7c20dbe2890285e4b0b1b74ed18e5ad1.setContent(html_bac98837cf4f7accf7c3080621a92f55);
            
        

        poly_line_d50199ae8c548b4c9ba6661b315fe610.bindPopup(popup_7c20dbe2890285e4b0b1b74ed18e5ad1)
        ;

        
    
    
            var poly_line_03b19143665efd780f8c41448b7ff17d = L.polyline(
                [[41.9091806, -87.6535956], [41.9093781, -87.6531527]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_85eb1cb52d58b9420a46928b9da1eb0e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6decaa7d59ccee98e8a90d3b708f6dbc = $(`<div id=&quot;html_6decaa7d59ccee98e8a90d3b708f6dbc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537841 → 2168537845 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804549&quot; target=&quot;_blank&quot;>206804549</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>42.72662519279102</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_85eb1cb52d58b9420a46928b9da1eb0e.setContent(html_6decaa7d59ccee98e8a90d3b708f6dbc);
            
        

        poly_line_03b19143665efd780f8c41448b7ff17d.bindPopup(popup_85eb1cb52d58b9420a46928b9da1eb0e)
        ;

        
    
    
            var poly_line_eb1ac1a69a82cf8943897258282b0d52 = L.polyline(
                [[41.9091806, -87.6535956], [41.9093258, -87.6537078]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_718591143e80e877428eadc8810970f5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_18285795190466dc47227d4f94e5425e = $(`<div id=&quot;html_18285795190466dc47227d4f94e5425e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537841 → 2168537843 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316526734&quot; target=&quot;_blank&quot;>1316526734</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.624838645746216</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_718591143e80e877428eadc8810970f5.setContent(html_18285795190466dc47227d4f94e5425e);
            
        

        poly_line_eb1ac1a69a82cf8943897258282b0d52.bindPopup(popup_718591143e80e877428eadc8810970f5)
        ;

        
    
    
            var poly_line_b0d94f194449062fd38525107605fe1f = L.polyline(
                [[41.9091806, -87.6535956], [41.9091471, -87.653572], [41.9090772, -87.6535126]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e78938992423ede3808a556323aa7c88 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3b321ca121cd315faee6ed7dcdd188f9 = $(`<div id=&quot;html_3b321ca121cd315faee6ed7dcdd188f9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537841 → 2168537839 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804526&quot; target=&quot;_blank&quot;>206804526</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>13.40235408949187</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_e78938992423ede3808a556323aa7c88.setContent(html_3b321ca121cd315faee6ed7dcdd188f9);
            
        

        poly_line_b0d94f194449062fd38525107605fe1f.bindPopup(popup_e78938992423ede3808a556323aa7c88)
        ;

        
    
    
            var poly_line_76af26ee951925f09aa190d1c5537099 = L.polyline(
                [[41.9093258, -87.6537078], [41.9091806, -87.6535956]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d284b374be26d649d4a8cc305cffe999 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fe1b78e57470b7796738e58cd971f277 = $(`<div id=&quot;html_fe1b78e57470b7796738e58cd971f277&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537843 → 2168537841 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316526734&quot; target=&quot;_blank&quot;>1316526734</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.624838645746216</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_d284b374be26d649d4a8cc305cffe999.setContent(html_fe1b78e57470b7796738e58cd971f277);
            
        

        poly_line_76af26ee951925f09aa190d1c5537099.bindPopup(popup_d284b374be26d649d4a8cc305cffe999)
        ;

        
    
    
            var poly_line_87ad8a6fbf052ecfce9a9279847661bc = L.polyline(
                [[41.9093258, -87.6537078], [41.9095177, -87.6532706], [41.909426, -87.6531969], [41.9093781, -87.6531527]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1c18e884d7b3d3e8d2d337c9e75cb90d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_123c3068fb10652bda0f6344318f10f6 = $(`<div id=&quot;html_123c3068fb10652bda0f6344318f10f6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537843 → 2168537845 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804542&quot; target=&quot;_blank&quot;>206804542</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>60.345412733678536</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_1c18e884d7b3d3e8d2d337c9e75cb90d.setContent(html_123c3068fb10652bda0f6344318f10f6);
            
        

        poly_line_87ad8a6fbf052ecfce9a9279847661bc.bindPopup(popup_1c18e884d7b3d3e8d2d337c9e75cb90d)
        ;

        
    
    
            var poly_line_e295d1d9d69e0d784346071017d5da77 = L.polyline(
                [[41.9093258, -87.6537078], [41.9094317, -87.6537663], [41.9094914, -87.6538145]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c5b43b69198ceded91f5def953cdc693 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c3d6c172d347a9552a5af3a181662fad = $(`<div id=&quot;html_c3d6c172d347a9552a5af3a181662fad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537843 → 2168537848 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316526734&quot; target=&quot;_blank&quot;>1316526734</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.476268770630128</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_c5b43b69198ceded91f5def953cdc693.setContent(html_c3d6c172d347a9552a5af3a181662fad);
            
        

        poly_line_e295d1d9d69e0d784346071017d5da77.bindPopup(popup_c5b43b69198ceded91f5def953cdc693)
        ;

        
    
    
            var poly_line_6b50a8a8dc0f87305e3155c7e3647f54 = L.polyline(
                [[41.9093781, -87.6531527], [41.9091806, -87.6535956]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3513392e4c0159f513d3957a319eae55 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_064f342674d2ab60026663b9ca901533 = $(`<div id=&quot;html_064f342674d2ab60026663b9ca901533&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537845 → 2168537841 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804549&quot; target=&quot;_blank&quot;>206804549</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>42.72662519279102</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_3513392e4c0159f513d3957a319eae55.setContent(html_064f342674d2ab60026663b9ca901533);
            
        

        poly_line_6b50a8a8dc0f87305e3155c7e3647f54.bindPopup(popup_3513392e4c0159f513d3957a319eae55)
        ;

        
    
    
            var poly_line_e735e471dd02530fe632d388ecbd3a4f = L.polyline(
                [[41.9093781, -87.6531527], [41.909426, -87.6531969], [41.9095177, -87.6532706], [41.9093258, -87.6537078]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7e1aa07311efd30d0444bbe464a14fd3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1635b7cd718cb1c5c1b27d10aeef5195 = $(`<div id=&quot;html_1635b7cd718cb1c5c1b27d10aeef5195&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537845 → 2168537843 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804542&quot; target=&quot;_blank&quot;>206804542</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>60.345412733678536</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_7e1aa07311efd30d0444bbe464a14fd3.setContent(html_1635b7cd718cb1c5c1b27d10aeef5195);
            
        

        poly_line_e735e471dd02530fe632d388ecbd3a4f.bindPopup(popup_7e1aa07311efd30d0444bbe464a14fd3)
        ;

        
    
    
            var poly_line_2212787f37b6dbe85c659a794adf6420 = L.polyline(
                [[41.9093781, -87.6531527], [41.9094293, -87.6530214], [41.9094639, -87.652945]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5ae96e78e18c0af3bc05567305054356 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4b2c69721019bc4fcf3df4d319313156 = $(`<div id=&quot;html_4b2c69721019bc4fcf3df4d319313156&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537845 → 2168537847 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804549&quot; target=&quot;_blank&quot;>206804549</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.66733802867407</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_5ae96e78e18c0af3bc05567305054356.setContent(html_4b2c69721019bc4fcf3df4d319313156);
            
        

        poly_line_2212787f37b6dbe85c659a794adf6420.bindPopup(popup_5ae96e78e18c0af3bc05567305054356)
        ;

        
    
    
            var poly_line_f013cb017c3606573c3883440c42adc8 = L.polyline(
                [[41.9094639, -87.652945], [41.9093875, -87.6528812]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4400ede0ee1dfb6dd88d97ca3be0ce26 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8300f1a817778d155f5285930471a87f = $(`<div id=&quot;html_8300f1a817778d155f5285930471a87f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537847 → 5493322763 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273622070&quot; target=&quot;_blank&quot;>273622070</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>10.002192001778809</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_4400ede0ee1dfb6dd88d97ca3be0ce26.setContent(html_8300f1a817778d155f5285930471a87f);
            
        

        poly_line_f013cb017c3606573c3883440c42adc8.bindPopup(popup_4400ede0ee1dfb6dd88d97ca3be0ce26)
        ;

        
    
    
            var poly_line_fbd3790f4c4593bd333bc05d9333df4f = L.polyline(
                [[41.9094639, -87.652945], [41.9094293, -87.6530214], [41.9093781, -87.6531527]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_37a4bf6148e69150a85d7d7ef978ae23 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b76fb88aa039806907b4bb33ce1a8434 = $(`<div id=&quot;html_b76fb88aa039806907b4bb33ce1a8434&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537847 → 2168537845 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804549&quot; target=&quot;_blank&quot;>206804549</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.66733802867407</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_37a4bf6148e69150a85d7d7ef978ae23.setContent(html_b76fb88aa039806907b4bb33ce1a8434);
            
        

        poly_line_fbd3790f4c4593bd333bc05d9333df4f.bindPopup(popup_37a4bf6148e69150a85d7d7ef978ae23)
        ;

        
    
    
            var poly_line_c7880a2202c7de30de32327b690d892b = L.polyline(
                [[41.9094639, -87.652945], [41.9096992, -87.6531419], [41.9097724, -87.653203]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_bac765a33debc80f60f1a6a4510b1d52 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_64d977eb5536f3f51cc7048c778af800 = $(`<div id=&quot;html_64d977eb5536f3f51cc7048c778af800&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537847 → 734238174 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273622070&quot; target=&quot;_blank&quot;>273622070</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>40.40493453432315</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_bac765a33debc80f60f1a6a4510b1d52.setContent(html_64d977eb5536f3f51cc7048c778af800);
            
        

        poly_line_c7880a2202c7de30de32327b690d892b.bindPopup(popup_bac765a33debc80f60f1a6a4510b1d52)
        ;

        
    
    
            var poly_line_4f36fa9bcc6266fe2209f48f0bb7c2cb = L.polyline(
                [[41.9094914, -87.6538145], [41.9094694, -87.6538614]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0f78c065af93179c069058a29c37a167 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8fa88e564163c7ef9f456e5b06ea4bb7 = $(`<div id=&quot;html_8fa88e564163c7ef9f456e5b06ea4bb7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537848 → 12184982675 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/864831414&quot; target=&quot;_blank&quot;>864831414</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>4.587685191753195</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Weed Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_0f78c065af93179c069058a29c37a167.setContent(html_8fa88e564163c7ef9f456e5b06ea4bb7);
            
        

        poly_line_4f36fa9bcc6266fe2209f48f0bb7c2cb.bindPopup(popup_0f78c065af93179c069058a29c37a167)
        ;

        
    
    
            var poly_line_2bf6dbe0dcf5334158347d15930ce9cf = L.polyline(
                [[41.9094914, -87.6538145], [41.9097351, -87.6532845], [41.9097724, -87.653203]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1479741f71294ec51532928684676dc8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ded0f0b21e646779f9905a59bc24b1d5 = $(`<div id=&quot;html_ded0f0b21e646779f9905a59bc24b1d5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537848 → 734238174 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/864831414&quot; target=&quot;_blank&quot;>864831414</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>59.4719079902632</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Weed Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_1479741f71294ec51532928684676dc8.setContent(html_ded0f0b21e646779f9905a59bc24b1d5);
            
        

        poly_line_2bf6dbe0dcf5334158347d15930ce9cf.bindPopup(popup_1479741f71294ec51532928684676dc8)
        ;

        
    
    
            var poly_line_6494e284bdfccbd803e5928fb723949e = L.polyline(
                [[41.9094914, -87.6538145], [41.9094317, -87.6537663], [41.9093258, -87.6537078]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f2cf6a55ecc84bb7015a72b3ff367523 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0d16c933d1e4759f9656378605156766 = $(`<div id=&quot;html_0d16c933d1e4759f9656378605156766&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537848 → 2168537843 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316526734&quot; target=&quot;_blank&quot;>1316526734</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.476268770630128</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_f2cf6a55ecc84bb7015a72b3ff367523.setContent(html_0d16c933d1e4759f9656378605156766);
            
        

        poly_line_6494e284bdfccbd803e5928fb723949e.bindPopup(popup_f2cf6a55ecc84bb7015a72b3ff367523)
        ;

        
    
    
            var poly_line_55ed10266a365831c349a03bd1bac11f = L.polyline(
                [[41.9100549, -87.6542614], [41.9102437, -87.6538559]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c9df2c403b261f5b1ddf7111ecf5045b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f151d4eb9623447cd68c321fed19f3f9 = $(`<div id=&quot;html_f151d4eb9623447cd68c321fed19f3f9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537855 → 2168537863 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804540&quot; target=&quot;_blank&quot;>206804540</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>39.58151223872407</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_c9df2c403b261f5b1ddf7111ecf5045b.setContent(html_f151d4eb9623447cd68c321fed19f3f9);
            
        

        poly_line_55ed10266a365831c349a03bd1bac11f.bindPopup(popup_c9df2c403b261f5b1ddf7111ecf5045b)
        ;

        
    
    
            var poly_line_d5ec410cce76d21569ad07a3430a0cf0 = L.polyline(
                [[41.9100549, -87.6542614], [41.9102004, -87.6543831]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c6f0d2a747be753ef6602fd38b8786c7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9e1f0b64afffaed225491ab759f4a413 = $(`<div id=&quot;html_9e1f0b64afffaed225491ab759f4a413&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537855 → 2168537859 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/210367279&quot; target=&quot;_blank&quot;>210367279</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.05718802611082</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_c6f0d2a747be753ef6602fd38b8786c7.setContent(html_9e1f0b64afffaed225491ab759f4a413);
            
        

        poly_line_d5ec410cce76d21569ad07a3430a0cf0.bindPopup(popup_c6f0d2a747be753ef6602fd38b8786c7)
        ;

        
    
    
            var poly_line_8c11feef8a68980b3f56d1297ce3beeb = L.polyline(
                [[41.9100549, -87.6542614], [41.9099289, -87.6541554], [41.9101177, -87.65375]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1172215806e0bf7e30b5f4dce4bad1e3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_de0e870a15982d3400cc92b8422d1943 = $(`<div id=&quot;html_de0e870a15982d3400cc92b8422d1943&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537855 → 2168537857 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/210367279&quot; target=&quot;_blank&quot;>210367279</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>56.10443932945265</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_1172215806e0bf7e30b5f4dce4bad1e3.setContent(html_de0e870a15982d3400cc92b8422d1943);
            
        

        poly_line_8c11feef8a68980b3f56d1297ce3beeb.bindPopup(popup_1172215806e0bf7e30b5f4dce4bad1e3)
        ;

        
    
    
            var poly_line_597f86d7b5ec177318444e4d58404a4a = L.polyline(
                [[41.9101177, -87.65375], [41.9102437, -87.6538559]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f02331429ae43943285910ad3f08872c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_215a704bddf37def1c1739c2ba44caca = $(`<div id=&quot;html_215a704bddf37def1c1739c2ba44caca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537857 → 2168537863 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/210367279&quot; target=&quot;_blank&quot;>210367279</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>16.52548250118094</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_f02331429ae43943285910ad3f08872c.setContent(html_215a704bddf37def1c1739c2ba44caca);
            
        

        poly_line_597f86d7b5ec177318444e4d58404a4a.bindPopup(popup_f02331429ae43943285910ad3f08872c)
        ;

        
    
    
            var poly_line_86ec17d33efc94ee70fc8c3aaf154c93 = L.polyline(
                [[41.9101177, -87.65375], [41.9101684, -87.6536433], [41.9102054, -87.6535651]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_41cc9f157b6e08a5d992efb09dea831f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_24fd719703107472fca206ea740ec021 = $(`<div id=&quot;html_24fd719703107472fca206ea740ec021&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537857 → 2168537861 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804552&quot; target=&quot;_blank&quot;>206804552</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.144037017440027</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_41cc9f157b6e08a5d992efb09dea831f.setContent(html_24fd719703107472fca206ea740ec021);
            
        

        poly_line_86ec17d33efc94ee70fc8c3aaf154c93.bindPopup(popup_41cc9f157b6e08a5d992efb09dea831f)
        ;

        
    
    
            var poly_line_6fe17a05d80f689bb416d700af9f393e = L.polyline(
                [[41.9101177, -87.65375], [41.9099289, -87.6541554], [41.9100549, -87.6542614]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c4cbfb8fd094d253b566efc76c8a6083 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ef2ffa43bd6eab687be4ce20af8bc4a4 = $(`<div id=&quot;html_ef2ffa43bd6eab687be4ce20af8bc4a4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537857 → 2168537855 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/210367279&quot; target=&quot;_blank&quot;>210367279</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>56.10443932945265</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_c4cbfb8fd094d253b566efc76c8a6083.setContent(html_ef2ffa43bd6eab687be4ce20af8bc4a4);
            
        

        poly_line_6fe17a05d80f689bb416d700af9f393e.bindPopup(popup_c4cbfb8fd094d253b566efc76c8a6083)
        ;

        
    
    
            var poly_line_59cc97437a12181fa5b9f719bd20c94a = L.polyline(
                [[41.9102004, -87.6543831], [41.9103858, -87.6539736]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_42461c1ad5f905ff7872788c79968106 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e88c152a31694b61d76e6619ade992f0 = $(`<div id=&quot;html_e88c152a31694b61d76e6619ade992f0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537859 → 2304188683 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804539&quot; target=&quot;_blank&quot;>206804539</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>39.66463689254716</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_42461c1ad5f905ff7872788c79968106.setContent(html_e88c152a31694b61d76e6619ade992f0);
            
        

        poly_line_59cc97437a12181fa5b9f719bd20c94a.bindPopup(popup_42461c1ad5f905ff7872788c79968106)
        ;

        
    
    
            var poly_line_bb0898ab02b8e200b40ee7eba249c003 = L.polyline(
                [[41.9102004, -87.6543831], [41.910336, -87.6544954]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_894a6b409861021bb59c3ac8505261a4 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f29954f498c2c70b5f713e6c1f43a91a = $(`<div id=&quot;html_f29954f498c2c70b5f713e6c1f43a91a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537859 → 2168537864 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/210367279&quot; target=&quot;_blank&quot;>210367279</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>17.711727210830816</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_894a6b409861021bb59c3ac8505261a4.setContent(html_f29954f498c2c70b5f713e6c1f43a91a);
            
        

        poly_line_bb0898ab02b8e200b40ee7eba249c003.bindPopup(popup_894a6b409861021bb59c3ac8505261a4)
        ;

        
    
    
            var poly_line_e70e6a18379199a9781fe406dcded14f = L.polyline(
                [[41.9102004, -87.6543831], [41.9100549, -87.6542614]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3c79db26a4459237b973c6ea7c6ed040 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e576e00e948ad17f41395aa1dcacf588 = $(`<div id=&quot;html_e576e00e948ad17f41395aa1dcacf588&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537859 → 2168537855 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/210367279&quot; target=&quot;_blank&quot;>210367279</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.05718802611082</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_3c79db26a4459237b973c6ea7c6ed040.setContent(html_e576e00e948ad17f41395aa1dcacf588);
            
        

        poly_line_e70e6a18379199a9781fe406dcded14f.bindPopup(popup_3c79db26a4459237b973c6ea7c6ed040)
        ;

        
    
    
            var poly_line_b7a49d3d9c6994ae86ddb9e11afd432e = L.polyline(
                [[41.9102054, -87.6535651], [41.9104717, -87.6537879]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7c005066746eac85ec4473caef22a3d2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6e96d1a2d45296b9adac032e7e6ae827 = $(`<div id=&quot;html_6e96d1a2d45296b9adac032e7e6ae827&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537861 → 2168537865 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273622070&quot; target=&quot;_blank&quot;>273622070</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>34.88181809659589</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_7c005066746eac85ec4473caef22a3d2.setContent(html_6e96d1a2d45296b9adac032e7e6ae827);
            
        

        poly_line_b7a49d3d9c6994ae86ddb9e11afd432e.bindPopup(popup_7c005066746eac85ec4473caef22a3d2)
        ;

        
    
    
            var poly_line_b9ef89f1237bc5e08544d71229f19392 = L.polyline(
                [[41.9102054, -87.6535651], [41.9101684, -87.6536433], [41.9101177, -87.65375]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_cb83d7821ddf2b1470e1fee426269ae2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_656905a9421ffc593f6e9ceac2f59b43 = $(`<div id=&quot;html_656905a9421ffc593f6e9ceac2f59b43&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537861 → 2168537857 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804552&quot; target=&quot;_blank&quot;>206804552</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.144037017440027</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_cb83d7821ddf2b1470e1fee426269ae2.setContent(html_656905a9421ffc593f6e9ceac2f59b43);
            
        

        poly_line_b9ef89f1237bc5e08544d71229f19392.bindPopup(popup_cb83d7821ddf2b1470e1fee426269ae2)
        ;

        
    
    
            var poly_line_6beb5cf06b40617a26672dc0f4601663 = L.polyline(
                [[41.9102054, -87.6535651], [41.9099245, -87.6533302], [41.9097724, -87.653203]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_78f83a2ece3e225de7fba40ef0067f6c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4c6d0e8d051324232f5a862686090b08 = $(`<div id=&quot;html_4c6d0e8d051324232f5a862686090b08&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537861 → 734238174 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273622070&quot; target=&quot;_blank&quot;>273622070</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>56.71000762749311</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_78f83a2ece3e225de7fba40ef0067f6c.setContent(html_4c6d0e8d051324232f5a862686090b08);
            
        

        poly_line_6beb5cf06b40617a26672dc0f4601663.bindPopup(popup_78f83a2ece3e225de7fba40ef0067f6c)
        ;

        
    
    
            var poly_line_24a0e710bcc6a4a9a2a686eb409dccc9 = L.polyline(
                [[41.9102437, -87.6538559], [41.9100549, -87.6542614]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_672d2436b1b4d66e40f11f327dcd623b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c2019e2cc913a825a5685e264333fa71 = $(`<div id=&quot;html_c2019e2cc913a825a5685e264333fa71&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537863 → 2168537855 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804540&quot; target=&quot;_blank&quot;>206804540</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>39.58151223872407</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_672d2436b1b4d66e40f11f327dcd623b.setContent(html_c2019e2cc913a825a5685e264333fa71);
            
        

        poly_line_24a0e710bcc6a4a9a2a686eb409dccc9.bindPopup(popup_672d2436b1b4d66e40f11f327dcd623b)
        ;

        
    
    
            var poly_line_461fd299656ae3f296461a97abf3e21e = L.polyline(
                [[41.9102437, -87.6538559], [41.9101177, -87.65375]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_da7773ac5b02817bf53937d0dbf6d5ef = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9e99ba655e6df3634c9e4639a45f7133 = $(`<div id=&quot;html_9e99ba655e6df3634c9e4639a45f7133&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537863 → 2168537857 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/210367279&quot; target=&quot;_blank&quot;>210367279</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>16.52548250118094</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_da7773ac5b02817bf53937d0dbf6d5ef.setContent(html_9e99ba655e6df3634c9e4639a45f7133);
            
        

        poly_line_461fd299656ae3f296461a97abf3e21e.bindPopup(popup_da7773ac5b02817bf53937d0dbf6d5ef)
        ;

        
    
    
            var poly_line_e21f4d1237a622d40e3690d923c0d6bd = L.polyline(
                [[41.9102437, -87.6538559], [41.9103551, -87.6539482], [41.9103858, -87.6539736]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fe840b14f8630652d25ecab3ec7e1ea0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_75aff099a5362818f3cdeaea0c16e832 = $(`<div id=&quot;html_75aff099a5362818f3cdeaea0c16e832&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537863 → 2304188683 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/210367279&quot; target=&quot;_blank&quot;>210367279</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.561470860322018</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_fe840b14f8630652d25ecab3ec7e1ea0.setContent(html_75aff099a5362818f3cdeaea0c16e832);
            
        

        poly_line_e21f4d1237a622d40e3690d923c0d6bd.bindPopup(popup_fe840b14f8630652d25ecab3ec7e1ea0)
        ;

        
    
    
            var poly_line_fc4058d0bec9a7b57f96ee7d67a5642d = L.polyline(
                [[41.910336, -87.6544954], [41.9102004, -87.6543831]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_94cc946a62b7545f7431a2d38a55ebd5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8059f68540a2bd58bddb26d8c7b629eb = $(`<div id=&quot;html_8059f68540a2bd58bddb26d8c7b629eb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537864 → 2168537859 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/210367279&quot; target=&quot;_blank&quot;>210367279</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>17.711727210830816</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_94cc946a62b7545f7431a2d38a55ebd5.setContent(html_8059f68540a2bd58bddb26d8c7b629eb);
            
        

        poly_line_fc4058d0bec9a7b57f96ee7d67a5642d.bindPopup(popup_94cc946a62b7545f7431a2d38a55ebd5)
        ;

        
    
    
            var poly_line_0de46a078ff19dc691a576fc0ccd0eb5 = L.polyline(
                [[41.910336, -87.6544954], [41.9105232, -87.6540875], [41.9104319, -87.6540119], [41.9103858, -87.6539736]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6cf6bc73bed56af2bd924b7acad2dc86 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_97b455a83aa01a8959fa1a96a894a5e8 = $(`<div id=&quot;html_97b455a83aa01a8959fa1a96a894a5e8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537864 → 2304188683 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/210367279&quot; target=&quot;_blank&quot;>210367279</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>57.60779126718775</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_6cf6bc73bed56af2bd924b7acad2dc86.setContent(html_97b455a83aa01a8959fa1a96a894a5e8);
            
        

        poly_line_0de46a078ff19dc691a576fc0ccd0eb5.bindPopup(popup_6cf6bc73bed56af2bd924b7acad2dc86)
        ;

        
    
    
            var poly_line_d612427251bbae0a38571237af45ca63 = L.polyline(
                [[41.910336, -87.6544954], [41.9104067, -87.6545574], [41.9104421, -87.6545891], [41.9104964, -87.6547169]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_93388e4cb42480a7432b0783d7ef9eef = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2622d6eb35297b740cb40e81c4e162ed = $(`<div id=&quot;html_2622d6eb35297b740cb40e81c4e162ed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537864 → 12185013535 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316526742&quot; target=&quot;_blank&quot;>1316526742</a>, <a href=&quot;https://www.openstreetmap.org/way/1316526743&quot; target=&quot;_blank&quot;>1316526743</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>26.29551372205472</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>['driveway', 'parking_aisle']</td></tr>             </table>         </div>         </div>`)[0];
                popup_93388e4cb42480a7432b0783d7ef9eef.setContent(html_2622d6eb35297b740cb40e81c4e162ed);
            
        

        poly_line_d612427251bbae0a38571237af45ca63.bindPopup(popup_93388e4cb42480a7432b0783d7ef9eef)
        ;

        
    
    
            var poly_line_92683ab1dddb6677d36becb8f004b410 = L.polyline(
                [[41.9104717, -87.6537879], [41.9102054, -87.6535651]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8d7a642e1576eae19d12321df99eb84a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_10a6b56dc32b87e4182fa10647bccf3b = $(`<div id=&quot;html_10a6b56dc32b87e4182fa10647bccf3b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537865 → 2168537861 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273622070&quot; target=&quot;_blank&quot;>273622070</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>34.88181809659589</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_8d7a642e1576eae19d12321df99eb84a.setContent(html_10a6b56dc32b87e4182fa10647bccf3b);
            
        

        poly_line_92683ab1dddb6677d36becb8f004b410.bindPopup(popup_8d7a642e1576eae19d12321df99eb84a)
        ;

        
    
    
            var poly_line_3fe69658eb304179ace89d5218265a89 = L.polyline(
                [[41.9104717, -87.6537879], [41.9104355, -87.6538659], [41.9103858, -87.6539736]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d8bae0c1cf3d8ba22f9d1eee97514ca5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a332a08abc2ab1d0677912c801965958 = $(`<div id=&quot;html_a332a08abc2ab1d0677912c801965958&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537865 → 2304188683 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804539&quot; target=&quot;_blank&quot;>206804539</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.09339407567481</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_d8bae0c1cf3d8ba22f9d1eee97514ca5.setContent(html_a332a08abc2ab1d0677912c801965958);
            
        

        poly_line_3fe69658eb304179ace89d5218265a89.bindPopup(popup_d8bae0c1cf3d8ba22f9d1eee97514ca5)
        ;

        
    
    
            var poly_line_a05c084b8b1fe59e41a799a0414bda55 = L.polyline(
                [[41.9104717, -87.6537879], [41.9107509, -87.6540214], [41.9108263, -87.6540839]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_84a6feb77a465af1f3a7df8392e4d055 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3568f7ce72dda2877aac01a16c1105bf = $(`<div id=&quot;html_3568f7ce72dda2877aac01a16c1105bf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2168537865 → 263983398 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273622070&quot; target=&quot;_blank&quot;>273622070</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>46.418409885750435</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_84a6feb77a465af1f3a7df8392e4d055.setContent(html_3568f7ce72dda2877aac01a16c1105bf);
            
        

        poly_line_a05c084b8b1fe59e41a799a0414bda55.bindPopup(popup_84a6feb77a465af1f3a7df8392e4d055)
        ;

        
    
    
            var poly_line_bb2233d3805a3cf71b5e1e4a4a0d88b5 = L.polyline(
                [[41.9097969, -87.6524501], [41.9098064, -87.6519877]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e2cdc538b612244df3f0ce3024d86e78 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_be4cf5de9976c4cb769609fd89139cca = $(`<div id=&quot;html_be4cf5de9976c4cb769609fd89139cca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2204462531 → 5493322746 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24083761&quot; target=&quot;_blank&quot;>24083761</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>38.27867784453977</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Weed Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_e2cdc538b612244df3f0ce3024d86e78.setContent(html_be4cf5de9976c4cb769609fd89139cca);
            
        

        poly_line_bb2233d3805a3cf71b5e1e4a4a0d88b5.bindPopup(popup_e2cdc538b612244df3f0ce3024d86e78)
        ;

        
    
    
            var poly_line_0e1980329a95dd4daa30c4025ce0a8c9 = L.polyline(
                [[41.9097969, -87.6524501], [41.9097862, -87.6529751], [41.9097724, -87.653203]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9a89862bb52472ed02a02f3fd96e40d9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2ca9247a3edc3d9afefe92b0a6dc13e5 = $(`<div id=&quot;html_2ca9247a3edc3d9afefe92b0a6dc13e5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2204462531 → 734238174 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24083761&quot; target=&quot;_blank&quot;>24083761</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>62.38191572624095</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Weed Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_9a89862bb52472ed02a02f3fd96e40d9.setContent(html_2ca9247a3edc3d9afefe92b0a6dc13e5);
            
        

        poly_line_0e1980329a95dd4daa30c4025ce0a8c9.bindPopup(popup_9a89862bb52472ed02a02f3fd96e40d9)
        ;

        
    
    
            var poly_line_0e9eae5d48f15f67864d46402b105149 = L.polyline(
                [[41.9097969, -87.6524501], [41.9097309, -87.6523929], [41.9096024, -87.6522815]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fca90b5d9057a5cb90ce058726925603 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f827efca55f10b5572975e84f9a047b2 = $(`<div id=&quot;html_f827efca55f10b5572975e84f9a047b2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2204462531 → 5493322757 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/210367260&quot; target=&quot;_blank&quot;>210367260</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>25.73714372700703</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_fca90b5d9057a5cb90ce058726925603.setContent(html_f827efca55f10b5572975e84f9a047b2);
            
        

        poly_line_0e9eae5d48f15f67864d46402b105149.bindPopup(popup_fca90b5d9057a5cb90ce058726925603)
        ;

        
    
    
            var poly_line_e2295c43cc28e21e6e26354db1650f66 = L.polyline(
                [[41.907559, -87.6433266], [41.9073945, -87.643322], [41.9072336, -87.6433174], [41.907027, -87.6433116], [41.9065846, -87.6432991], [41.9065322, -87.6432976]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ec3ca661ffc788056b3b3ebc71d0d219 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4daaf5dba8d86c3d634d464f91e0b999 = $(`<div id=&quot;html_4daaf5dba8d86c3d634d464f91e0b999&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2204462532 → 12049414900 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/244501328&quot; target=&quot;_blank&quot;>244501328</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>114.20033258606128</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_ec3ca661ffc788056b3b3ebc71d0d219.setContent(html_4daaf5dba8d86c3d634d464f91e0b999);
            
        

        poly_line_e2295c43cc28e21e6e26354db1650f66.bindPopup(popup_ec3ca661ffc788056b3b3ebc71d0d219)
        ;

        
    
    
            var poly_line_c02212d7f86f977b5272b79d1caf613d = L.polyline(
                [[41.907559, -87.6433266], [41.9075597, -87.6432309], [41.9075632, -87.6427702], [41.9091189, -87.6427963], [41.9091823, -87.6427974]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9ba15865bdddc1c0a0e701ed3bc042ea = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5ae39661a2efd45a0c7a51805699e3d8 = $(`<div id=&quot;html_5ae39661a2efd45a0c7a51805699e3d8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2204462532 → 2204462549 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/210367272&quot; target=&quot;_blank&quot;>210367272</a>, <a href=&quot;https://www.openstreetmap.org/way/519888260&quot; target=&quot;_blank&quot;>519888260</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>226.0967164971256</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_9ba15865bdddc1c0a0e701ed3bc042ea.setContent(html_5ae39661a2efd45a0c7a51805699e3d8);
            
        

        poly_line_c02212d7f86f977b5272b79d1caf613d.bindPopup(popup_9ba15865bdddc1c0a0e701ed3bc042ea)
        ;

        
    
    
            var poly_line_93d7e1fa70fda85eb168887438d1b179 = L.polyline(
                [[41.907559, -87.6433266], [41.9090903, -87.6433697], [41.9091111, -87.6433703], [41.9091747, -87.6433721]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2fd4b8a22fa32d31a2eea9543b093ff8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d08fc0cc55aa0e926fa81aa0f8763422 = $(`<div id=&quot;html_d08fc0cc55aa0e926fa81aa0f8763422&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2204462532 → 261184871 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1311091786&quot; target=&quot;_blank&quot;>1311091786</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>179.69734881734757</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_2fd4b8a22fa32d31a2eea9543b093ff8.setContent(html_d08fc0cc55aa0e926fa81aa0f8763422);
            
        

        poly_line_93d7e1fa70fda85eb168887438d1b179.bindPopup(popup_2fd4b8a22fa32d31a2eea9543b093ff8)
        ;

        
    
    
            var poly_line_07b22834a2c05aac3fc8a3be2b27a762 = L.polyline(
                [[41.9091068, -87.651864], [41.9096024, -87.6522815]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_58a9821ee971dbe4d68ebcff7ce575f7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3fb9d7b34f385d57e2d61d4d186e75ce = $(`<div id=&quot;html_3fb9d7b34f385d57e2d61d4d186e75ce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2204462548 → 5493322757 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/210367260&quot; target=&quot;_blank&quot;>210367260</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>65.04263000970583</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_58a9821ee971dbe4d68ebcff7ce575f7.setContent(html_3fb9d7b34f385d57e2d61d4d186e75ce);
            
        

        poly_line_07b22834a2c05aac3fc8a3be2b27a762.bindPopup(popup_58a9821ee971dbe4d68ebcff7ce575f7)
        ;

        
    
    
            var poly_line_4ce557304d374eafaef1d6fe10f803d6 = L.polyline(
                [[41.9091068, -87.651864], [41.9091083, -87.6517734]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9eaa9dc44a5b5a327fc27fd12b272559 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_94cca61cd3a4c31ed4a7ebc5897895d9 = $(`<div id=&quot;html_94cca61cd3a4c31ed4a7ebc5897895d9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2204462548 → 5493322743 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/210367269&quot; target=&quot;_blank&quot;>210367269</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.499184433684339</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_9eaa9dc44a5b5a327fc27fd12b272559.setContent(html_94cca61cd3a4c31ed4a7ebc5897895d9);
            
        

        poly_line_4ce557304d374eafaef1d6fe10f803d6.bindPopup(popup_9eaa9dc44a5b5a327fc27fd12b272559)
        ;

        
    
    
            var poly_line_7b8de08b11a862dde74dde6b651d21bf = L.polyline(
                [[41.9091068, -87.651864], [41.9085, -87.6513528], [41.9084272, -87.6512917]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_950610a93337e47ae1c81a139f0e6dbe = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_844d3554b28da08f9cb7a9f298301104 = $(`<div id=&quot;html_844d3554b28da08f9cb7a9f298301104&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2204462548 → 2204462590 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/210367260&quot; target=&quot;_blank&quot;>210367260</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>89.18209826831276</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_950610a93337e47ae1c81a139f0e6dbe.setContent(html_844d3554b28da08f9cb7a9f298301104);
            
        

        poly_line_7b8de08b11a862dde74dde6b651d21bf.bindPopup(popup_950610a93337e47ae1c81a139f0e6dbe)
        ;

        
    
    
            var poly_line_d9c6ac31e9340b038b1f60ecfc0b4dd6 = L.polyline(
                [[41.9091823, -87.6427974], [41.9091826, -87.6427732]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e947e9b7bc46e2e75815adb44d507cf1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1ee5ee91d750fc2a91325a9caa48378c = $(`<div id=&quot;html_1ee5ee91d750fc2a91325a9caa48378c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2204462549 → 9215532503 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24085266&quot; target=&quot;_blank&quot;>24085266</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>2.002873374166507</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Blackhawk Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_e947e9b7bc46e2e75815adb44d507cf1.setContent(html_1ee5ee91d750fc2a91325a9caa48378c);
            
        

        poly_line_d9c6ac31e9340b038b1f60ecfc0b4dd6.bindPopup(popup_e947e9b7bc46e2e75815adb44d507cf1)
        ;

        
    
    
            var poly_line_bb16bb39a61a92d1c57bdf24b43c98ee = L.polyline(
                [[41.9091823, -87.6427974], [41.9091764, -87.6432499], [41.909176, -87.6432777], [41.9091747, -87.6433721]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_49a3da0cba334407f42a68caf1b5cf78 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e8425906f5587e003725eb9ea43efe2e = $(`<div id=&quot;html_e8425906f5587e003725eb9ea43efe2e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2204462549 → 261184871 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24085266&quot; target=&quot;_blank&quot;>24085266</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>47.56502369947977</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Blackhawk Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_49a3da0cba334407f42a68caf1b5cf78.setContent(html_e8425906f5587e003725eb9ea43efe2e);
            
        

        poly_line_bb16bb39a61a92d1c57bdf24b43c98ee.bindPopup(popup_49a3da0cba334407f42a68caf1b5cf78)
        ;

        
    
    
            var poly_line_bc24a190437db4de3e20765879ae2151 = L.polyline(
                [[41.9091823, -87.6427974], [41.9091189, -87.6427963], [41.9075632, -87.6427702], [41.9075597, -87.6432309], [41.907559, -87.6433266]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a5bb2b07debd2e29cc8ae236917f32fc = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ace80187a5a17382038365dc2a00abe3 = $(`<div id=&quot;html_ace80187a5a17382038365dc2a00abe3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2204462549 → 2204462532 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/210367272&quot; target=&quot;_blank&quot;>210367272</a>, <a href=&quot;https://www.openstreetmap.org/way/519888260&quot; target=&quot;_blank&quot;>519888260</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>226.09671649712558</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_a5bb2b07debd2e29cc8ae236917f32fc.setContent(html_ace80187a5a17382038365dc2a00abe3);
            
        

        poly_line_bc24a190437db4de3e20765879ae2151.bindPopup(popup_a5bb2b07debd2e29cc8ae236917f32fc)
        ;

        
    
    
            var poly_line_9cae38bd41166429e05ce658b74e793e = L.polyline(
                [[41.9091203, -87.6510624], [41.9092281, -87.6510659]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_df7a8b0152b6c4b50f24525173363456 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_dec0efe1cb373365970175d88e037679 = $(`<div id=&quot;html_dec0efe1cb373365970175d88e037679&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2204462579 → 5493322742 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24111763&quot; target=&quot;_blank&quot;>24111763</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>11.990328625008704</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Fremont Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_df7a8b0152b6c4b50f24525173363456.setContent(html_dec0efe1cb373365970175d88e037679);
            
        

        poly_line_9cae38bd41166429e05ce658b74e793e.bindPopup(popup_df7a8b0152b6c4b50f24525173363456)
        ;

        
    
    
            var poly_line_b2acf0e0f7c9300d4d1a55564d06d87d = L.polyline(
                [[41.9091203, -87.6510624], [41.9086147, -87.6510458], [41.9085405, -87.6510434]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5a507cef6763a8121d4b06763819f589 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2e80c59f9f33bfc1f596c500fe03346f = $(`<div id=&quot;html_2e80c59f9f33bfc1f596c500fe03346f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2204462579 → 261193488 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24111763&quot; target=&quot;_blank&quot;>24111763</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>64.49007945443316</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Fremont Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_5a507cef6763a8121d4b06763819f589.setContent(html_2e80c59f9f33bfc1f596c500fe03346f);
            
        

        poly_line_b2acf0e0f7c9300d4d1a55564d06d87d.bindPopup(popup_5a507cef6763a8121d4b06763819f589)
        ;

        
    
    
            var poly_line_5e5329130bd2a3b7661d493c2f574e82 = L.polyline(
                [[41.9091203, -87.6510624], [41.9091185, -87.6511669], [41.9091083, -87.6517734]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a034e2d70f0503379f46f1a675f6023d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ee2b9bc19a2f504aed9d40c124713110 = $(`<div id=&quot;html_ee2b9bc19a2f504aed9d40c124713110&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2204462579 → 5493322743 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/210367269&quot; target=&quot;_blank&quot;>210367269</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>58.851781016304685</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_a034e2d70f0503379f46f1a675f6023d.setContent(html_ee2b9bc19a2f504aed9d40c124713110);
            
        

        poly_line_5e5329130bd2a3b7661d493c2f574e82.bindPopup(popup_a034e2d70f0503379f46f1a675f6023d)
        ;

        
    
    
            var poly_line_bd00b70d76dc56c43c39c0e7f620a292 = L.polyline(
                [[41.9106062, -87.6428212], [41.910599, -87.6433254], [41.9105972, -87.6434285]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_bb7a048fb0a362b315d0fb3e0b60b223 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_62ff497c9544bd2320aea749d5508a9a = $(`<div id=&quot;html_62ff497c9544bd2320aea749d5508a9a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2204462582 → 2204462596 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/210367262&quot; target=&quot;_blank&quot;>210367262</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>50.26412887471255</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_bb7a048fb0a362b315d0fb3e0b60b223.setContent(html_62ff497c9544bd2320aea749d5508a9a);
            
        

        poly_line_bd00b70d76dc56c43c39c0e7f620a292.bindPopup(popup_bb7a048fb0a362b315d0fb3e0b60b223)
        ;

        
    
    
            var poly_line_247eb62cd8f03f59af900ea4ee4fdebf = L.polyline(
                [[41.9106062, -87.6428212], [41.9104446, -87.6428157], [41.9104372, -87.6428155], [41.9092707, -87.642776], [41.9091826, -87.6427732]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_30fa089b8394d670ec7e52c452cf3467 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f5e1c2268d59f9e3ae7bf47bcc84bda6 = $(`<div id=&quot;html_f5e1c2268d59f9e3ae7bf47bcc84bda6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2204462582 → 9215532503 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/665996057&quot; target=&quot;_blank&quot;>665996057</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>158.34716884533316</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_30fa089b8394d670ec7e52c452cf3467.setContent(html_f5e1c2268d59f9e3ae7bf47bcc84bda6);
            
        

        poly_line_247eb62cd8f03f59af900ea4ee4fdebf.bindPopup(popup_30fa089b8394d670ec7e52c452cf3467)
        ;

        
    
    
            var poly_line_5fc0c927862be797ea806018a74f4d4b = L.polyline(
                [[41.9084272, -87.6512917], [41.9085, -87.6513528], [41.9091068, -87.651864]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f8dc9b33020cc232ef8d00a97eecd0dd = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_234020876163ace8c52910c24bf2ca4f = $(`<div id=&quot;html_234020876163ace8c52910c24bf2ca4f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2204462590 → 2204462548 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/210367260&quot; target=&quot;_blank&quot;>210367260</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>89.18209826831276</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_f8dc9b33020cc232ef8d00a97eecd0dd.setContent(html_234020876163ace8c52910c24bf2ca4f);
            
        

        poly_line_5fc0c927862be797ea806018a74f4d4b.bindPopup(popup_f8dc9b33020cc232ef8d00a97eecd0dd)
        ;

        
    
    
            var poly_line_e773b52b2d92a74634b08e7b3df10f91 = L.polyline(
                [[41.9084272, -87.6512917], [41.9082268, -87.6517313], [41.9082136, -87.6517601], [41.9081676, -87.6518609]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_71cec807549b18b2582a61f8bc8257ae = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b67c872213d501b7050b3b23dd5e9bbc = $(`<div id=&quot;html_b67c872213d501b7050b3b23dd5e9bbc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2204462590 → 734236939 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1413118080&quot; target=&quot;_blank&quot;>1413118080</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>55.244509497537166</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Blackhawk Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_71cec807549b18b2582a61f8bc8257ae.setContent(html_b67c872213d501b7050b3b23dd5e9bbc);
            
        

        poly_line_e773b52b2d92a74634b08e7b3df10f91.bindPopup(popup_71cec807549b18b2582a61f8bc8257ae)
        ;

        
    
    
            var poly_line_2a2189546238db07e8daf5f131aef05f = L.polyline(
                [[41.9084272, -87.6512917], [41.9085086, -87.6511133], [41.9085405, -87.6510434]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3fef02edad24eaa822c183e80b86282b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2d9a6e0a44e1f7d85b6f310317969af0 = $(`<div id=&quot;html_2d9a6e0a44e1f7d85b6f310317969af0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2204462590 → 261193488 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1413118080&quot; target=&quot;_blank&quot;>1413118080</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>24.102286718047225</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Blackhawk Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_3fef02edad24eaa822c183e80b86282b.setContent(html_2d9a6e0a44e1f7d85b6f310317969af0);
            
        

        poly_line_2a2189546238db07e8daf5f131aef05f.bindPopup(popup_3fef02edad24eaa822c183e80b86282b)
        ;

        
    
    
            var poly_line_a5b1118b0dc08807e80dc6488b96e24c = L.polyline(
                [[41.9105972, -87.6434285], [41.9106648, -87.6434312]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f77544e0f9a40cb92df9eded2bec4f58 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c400ac044130179c47de7278c9f7c974 = $(`<div id=&quot;html_c400ac044130179c47de7278c9f7c974&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2204462596 → 2387195193 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1311091786&quot; target=&quot;_blank&quot;>1311091786</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.520107410433469</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_f77544e0f9a40cb92df9eded2bec4f58.setContent(html_c400ac044130179c47de7278c9f7c974);
            
        

        poly_line_a5b1118b0dc08807e80dc6488b96e24c.bindPopup(popup_f77544e0f9a40cb92df9eded2bec4f58)
        ;

        
    
    
            var poly_line_4f212e2c140ec8cc476c4ec1974433be = L.polyline(
                [[41.9105972, -87.6434285], [41.910599, -87.6433254], [41.9106062, -87.6428212]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5b5f48536c0f04eef5ad85b9b657449f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1c158cef0d8627ed54a7bac6283604da = $(`<div id=&quot;html_1c158cef0d8627ed54a7bac6283604da&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2204462596 → 2204462582 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/210367262&quot; target=&quot;_blank&quot;>210367262</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>50.26412887471255</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_5b5f48536c0f04eef5ad85b9b657449f.setContent(html_1c158cef0d8627ed54a7bac6283604da);
            
        

        poly_line_4f212e2c140ec8cc476c4ec1974433be.bindPopup(popup_5b5f48536c0f04eef5ad85b9b657449f)
        ;

        
    
    
            var poly_line_705c6b876818282982fbbf62be45e37a = L.polyline(
                [[41.9105972, -87.6434285], [41.9102927, -87.6434164], [41.9093, -87.643377], [41.909265, -87.6433756], [41.9091747, -87.6433721]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0808dcde8865b22470648bd5a89ddc8c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a99e47f317e774f5c4fe18a8612fb42a = $(`<div id=&quot;html_a99e47f317e774f5c4fe18a8612fb42a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2204462596 → 261184871 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1311091786&quot; target=&quot;_blank&quot;>1311091786</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>158.24384923312638</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_0808dcde8865b22470648bd5a89ddc8c.setContent(html_a99e47f317e774f5c4fe18a8612fb42a);
            
        

        poly_line_705c6b876818282982fbbf62be45e37a.bindPopup(popup_0808dcde8865b22470648bd5a89ddc8c)
        ;

        
    
    
            var poly_line_79b8ae01f45c64ca3c9a5f355f37e356 = L.polyline(
                [[41.910276, -87.6610096], [41.9101766, -87.6610044]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ce8f4bb5515ade11ff1e688c5c04e0b6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8db3f0fce2eb5c933265c14de66da6ba = $(`<div id=&quot;html_8db3f0fce2eb5c933265c14de66da6ba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2281979721 → 5493212928 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/467501412&quot; target=&quot;_blank&quot;>467501412</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>11.061164336254686</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_ce8f4bb5515ade11ff1e688c5c04e0b6.setContent(html_8db3f0fce2eb5c933265c14de66da6ba);
            
        

        poly_line_79b8ae01f45c64ca3c9a5f355f37e356.bindPopup(popup_ce8f4bb5515ade11ff1e688c5c04e0b6)
        ;

        
    
    
            var poly_line_3b5063324ada33859b14d67931b26db2 = L.polyline(
                [[41.910276, -87.6610096], [41.9102794, -87.6608328]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8693c43fd8b3d6ccca0d853902bd0825 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e2387f8bee4396631fb17d60d419760d = $(`<div id=&quot;html_e2387f8bee4396631fb17d60d419760d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2281979721 → 5493121375 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1427783270&quot; target=&quot;_blank&quot;>1427783270</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>14.63516578279457</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_8693c43fd8b3d6ccca0d853902bd0825.setContent(html_e2387f8bee4396631fb17d60d419760d);
            
        

        poly_line_3b5063324ada33859b14d67931b26db2.bindPopup(popup_8693c43fd8b3d6ccca0d853902bd0825)
        ;

        
    
    
            var poly_line_124915ecae501bae9dc6a7fb2b73fa27 = L.polyline(
                [[41.910276, -87.6610096], [41.9102709, -87.6617469], [41.91027, -87.6618799]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ff8467282c1dbf345f10e6a2d4526a1f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6f5cf81d6af68bdea242dfc41e2dbcba = $(`<div id=&quot;html_6f5cf81d6af68bdea242dfc41e2dbcba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2281979721 → 13125726373 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1427783270&quot; target=&quot;_blank&quot;>1427783270</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>72.02082343663955</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_ff8467282c1dbf345f10e6a2d4526a1f.setContent(html_6f5cf81d6af68bdea242dfc41e2dbcba);
            
        

        poly_line_124915ecae501bae9dc6a7fb2b73fa27.bindPopup(popup_ff8467282c1dbf345f10e6a2d4526a1f)
        ;

        
    
    
            var poly_line_738ab4dbc7a439f82587f4e7966d98f2 = L.polyline(
                [[41.9109798, -87.6592172], [41.9111304, -87.6592173]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_28e55a7446ce9f9596cfe8365e5a37ca = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a52a29150144d30ee0902a724bf6009a = $(`<div id=&quot;html_a52a29150144d30ee0902a724bf6009a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2281979810 → 2281979854 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/47096759&quot; target=&quot;_blank&quot;>47096759</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>16.74598165352491</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_28e55a7446ce9f9596cfe8365e5a37ca.setContent(html_a52a29150144d30ee0902a724bf6009a);
            
        

        poly_line_738ab4dbc7a439f82587f4e7966d98f2.bindPopup(popup_28e55a7446ce9f9596cfe8365e5a37ca)
        ;

        
    
    
            var poly_line_2660b17a89d308f889d40cc95fd789d9 = L.polyline(
                [[41.9109798, -87.6592172], [41.9109461, -87.6592432], [41.9109206, -87.6592459], [41.9108931, -87.6592596], [41.9108742, -87.6592773], [41.9108552, -87.6592951], [41.9107587, -87.6594121]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ad63d905abd9df994b60e8fe814e95f7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_27d1891e127f3d141dc1428abfd183be = $(`<div id=&quot;html_27d1891e127f3d141dc1428abfd183be&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2281979810 → 11891975149 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1082616566&quot; target=&quot;_blank&quot;>1082616566</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>30.016140562591325</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_ad63d905abd9df994b60e8fe814e95f7.setContent(html_27d1891e127f3d141dc1428abfd183be);
            
        

        poly_line_2660b17a89d308f889d40cc95fd789d9.bindPopup(popup_ad63d905abd9df994b60e8fe814e95f7)
        ;

        
    
    
            var poly_line_9e635bfeed8b4e3e4514ff1c12c67f52 = L.polyline(
                [[41.9111164, -87.6601613], [41.9112921, -87.6601672]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6c4ffb803247764ef0293db022c62dc5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7b2dc4460c41f9c3b693b656492841c3 = $(`<div id=&quot;html_7b2dc4460c41f9c3b693b656492841c3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2281979822 → 2281979861 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/218991363&quot; target=&quot;_blank&quot;>218991363</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.54307547064417</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_6c4ffb803247764ef0293db022c62dc5.setContent(html_7b2dc4460c41f9c3b693b656492841c3);
            
        

        poly_line_9e635bfeed8b4e3e4514ff1c12c67f52.bindPopup(popup_6c4ffb803247764ef0293db022c62dc5)
        ;

        
    
    
            var poly_line_062624587f78c3540aee166836ac42a5 = L.polyline(
                [[41.9111164, -87.6601613], [41.9111259, -87.6595222], [41.9111294, -87.6592854], [41.9111304, -87.6592173]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_38ff079551a2317e87be918c013abff8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_14f4cf44c74bcea5bcad7d6674756c2b = $(`<div id=&quot;html_14f4cf44c74bcea5bcad7d6674756c2b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2281979822 → 2281979854 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/218991357&quot; target=&quot;_blank&quot;>218991357</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>78.13091224678726</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_38ff079551a2317e87be918c013abff8.setContent(html_14f4cf44c74bcea5bcad7d6674756c2b);
            
        

        poly_line_062624587f78c3540aee166836ac42a5.bindPopup(popup_38ff079551a2317e87be918c013abff8)
        ;

        
    
    
            var poly_line_7571b1929c620ad4daf0677dc3db1b43 = L.polyline(
                [[41.9111164, -87.6601613], [41.9109421, -87.6601554], [41.9109555, -87.65953]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_20cef05b1445e3b25d9c98d2eaeccb7d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_72d4c1dfaf426db1cf298d4b0f6c29fd = $(`<div id=&quot;html_72d4c1dfaf426db1cf298d4b0f6c29fd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2281979822 → 13125744485 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/218991363&quot; target=&quot;_blank&quot;>218991363</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>71.16049218440008</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_20cef05b1445e3b25d9c98d2eaeccb7d.setContent(html_72d4c1dfaf426db1cf298d4b0f6c29fd);
            
        

        poly_line_7571b1929c620ad4daf0677dc3db1b43.bindPopup(popup_20cef05b1445e3b25d9c98d2eaeccb7d)
        ;

        
    
    
            var poly_line_30b91b4a3158de447efba3c7a23c1117 = L.polyline(
                [[41.9111304, -87.6592173], [41.9109798, -87.6592172]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_606c6760b3253ef4619f437564f155c5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e3a6a72d780bc314270e2bc4032ad80f = $(`<div id=&quot;html_e3a6a72d780bc314270e2bc4032ad80f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2281979854 → 2281979810 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/47096759&quot; target=&quot;_blank&quot;>47096759</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>16.74598165352491</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_606c6760b3253ef4619f437564f155c5.setContent(html_e3a6a72d780bc314270e2bc4032ad80f);
            
        

        poly_line_30b91b4a3158de447efba3c7a23c1117.bindPopup(popup_606c6760b3253ef4619f437564f155c5)
        ;

        
    
    
            var poly_line_1c7be91a4a6e0d25f128a1aa7634dbbb = L.polyline(
                [[41.9111304, -87.6592173], [41.9111294, -87.6592854], [41.9111259, -87.6595222], [41.9111164, -87.6601613]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4c755524c43efc90c71db7405c976f51 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b4bd06dbc3956b8c96982d058c84d056 = $(`<div id=&quot;html_b4bd06dbc3956b8c96982d058c84d056&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2281979854 → 2281979822 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/218991357&quot; target=&quot;_blank&quot;>218991357</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>78.13091224678726</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_4c755524c43efc90c71db7405c976f51.setContent(html_b4bd06dbc3956b8c96982d058c84d056);
            
        

        poly_line_1c7be91a4a6e0d25f128a1aa7634dbbb.bindPopup(popup_4c755524c43efc90c71db7405c976f51)
        ;

        
    
    
            var poly_line_d57fa1278a7c63ae2bdb0347d3f221cb = L.polyline(
                [[41.9112921, -87.6601672], [41.9111164, -87.6601613]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_19de6863db0eb8d08162c159b33eea75 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_abc63c6218b17a3da955de489e321159 = $(`<div id=&quot;html_abc63c6218b17a3da955de489e321159&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2281979861 → 2281979822 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/218991363&quot; target=&quot;_blank&quot;>218991363</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.54307547064417</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_19de6863db0eb8d08162c159b33eea75.setContent(html_abc63c6218b17a3da955de489e321159);
            
        

        poly_line_d57fa1278a7c63ae2bdb0347d3f221cb.bindPopup(popup_19de6863db0eb8d08162c159b33eea75)
        ;

        
    
    
            var poly_line_4f6ffb27b72113f5bc5850fca646e661 = L.polyline(
                [[41.9063699, -87.6465401], [41.9064087, -87.6442033]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_41694d771eae8bc449c93dbb9b29ad59 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7e8c699c02529ccfcd2ae7bcce5e5c90 = $(`<div id=&quot;html_7e8c699c02529ccfcd2ae7bcce5e5c90&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2303534169 → 261260007 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24097869&quot; target=&quot;_blank&quot;>24097869</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>193.43118051716857</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Evergreen Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_41694d771eae8bc449c93dbb9b29ad59.setContent(html_7e8c699c02529ccfcd2ae7bcce5e5c90);
            
        

        poly_line_4f6ffb27b72113f5bc5850fca646e661.bindPopup(popup_41694d771eae8bc449c93dbb9b29ad59)
        ;

        
    
    
            var poly_line_61c8d5e1f3a185550f904014dda10b6d = L.polyline(
                [[41.9103858, -87.6539736], [41.9102004, -87.6543831]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_82f7048acab722ba31fdbca79f596cc0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b5841374753b1f9d0343f706d00f4c0b = $(`<div id=&quot;html_b5841374753b1f9d0343f706d00f4c0b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2304188683 → 2168537859 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804539&quot; target=&quot;_blank&quot;>206804539</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>39.66463689254716</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_82f7048acab722ba31fdbca79f596cc0.setContent(html_b5841374753b1f9d0343f706d00f4c0b);
            
        

        poly_line_61c8d5e1f3a185550f904014dda10b6d.bindPopup(popup_82f7048acab722ba31fdbca79f596cc0)
        ;

        
    
    
            var poly_line_5fca1d062e7bfcd9a9a21602305786a9 = L.polyline(
                [[41.9103858, -87.6539736], [41.9104355, -87.6538659], [41.9104717, -87.6537879]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1b0ba9f641450cdcd97a0a3c9610902b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a4e7b96bcd683f4967b350aec4b1b3e1 = $(`<div id=&quot;html_a4e7b96bcd683f4967b350aec4b1b3e1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2304188683 → 2168537865 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/206804539&quot; target=&quot;_blank&quot;>206804539</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.09339407567481</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_1b0ba9f641450cdcd97a0a3c9610902b.setContent(html_a4e7b96bcd683f4967b350aec4b1b3e1);
            
        

        poly_line_5fca1d062e7bfcd9a9a21602305786a9.bindPopup(popup_1b0ba9f641450cdcd97a0a3c9610902b)
        ;

        
    
    
            var poly_line_3f69d080f0d42ce69dca3c25cdd7a7ad = L.polyline(
                [[41.9103858, -87.6539736], [41.9103551, -87.6539482], [41.9102437, -87.6538559]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c5bcfb75db3b115b7025a42e076e5a4f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c57ab579362552ba252fce5e997a92a6 = $(`<div id=&quot;html_c57ab579362552ba252fce5e997a92a6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2304188683 → 2168537863 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/210367279&quot; target=&quot;_blank&quot;>210367279</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.561470860322018</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_c5bcfb75db3b115b7025a42e076e5a4f.setContent(html_c57ab579362552ba252fce5e997a92a6);
            
        

        poly_line_3f69d080f0d42ce69dca3c25cdd7a7ad.bindPopup(popup_c5bcfb75db3b115b7025a42e076e5a4f)
        ;

        
    
    
            var poly_line_4c75ecc8b3523b806210257170a7ddc2 = L.polyline(
                [[41.9103858, -87.6539736], [41.9104319, -87.6540119], [41.9105232, -87.6540875], [41.910336, -87.6544954]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_dee692ca8ef399a7c383a35fa8e1ba10 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_54473a0a69923e5d66079d5ae5ce51d4 = $(`<div id=&quot;html_54473a0a69923e5d66079d5ae5ce51d4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2304188683 → 2168537864 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/210367279&quot; target=&quot;_blank&quot;>210367279</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>57.60779126718775</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_dee692ca8ef399a7c383a35fa8e1ba10.setContent(html_54473a0a69923e5d66079d5ae5ce51d4);
            
        

        poly_line_4c75ecc8b3523b806210257170a7ddc2.bindPopup(popup_dee692ca8ef399a7c383a35fa8e1ba10)
        ;

        
    
    
            var poly_line_0095ad1959b43b0f6cbd08be5153deb9 = L.polyline(
                [[41.9098508, -87.6464174], [41.9099381, -87.6463071], [41.9100342, -87.6464502], [41.9100396, -87.6465015], [41.9100518, -87.646617], [41.9100203, -87.6466594], [41.9098508, -87.6464174]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b4a21b6ea72bc51cb80e906339450ced = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b24761e328bfe40987e4c4752fddb0c1 = $(`<div id=&quot;html_b24761e328bfe40987e4c4752fddb0c1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185257 → 2387185257 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187833&quot; target=&quot;_blank&quot;>230187833</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>75.67357984335092</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_b4a21b6ea72bc51cb80e906339450ced.setContent(html_b24761e328bfe40987e4c4752fddb0c1);
            
        

        poly_line_0095ad1959b43b0f6cbd08be5153deb9.bindPopup(popup_b4a21b6ea72bc51cb80e906339450ced)
        ;

        
    
    
            var poly_line_14d869a6310ce60741103211803e52c0 = L.polyline(
                [[41.9098508, -87.6464174], [41.9100203, -87.6466594], [41.9100518, -87.646617], [41.9100396, -87.6465015], [41.9100342, -87.6464502], [41.9099381, -87.6463071], [41.9098508, -87.6464174]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_786faf1c893a249532902e2580be76b1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8cbcdff5a10e631feb6fb430ca982fbd = $(`<div id=&quot;html_8cbcdff5a10e631feb6fb430ca982fbd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185257 → 2387185257 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187833&quot; target=&quot;_blank&quot;>230187833</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>75.67357984335092</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_786faf1c893a249532902e2580be76b1.setContent(html_8cbcdff5a10e631feb6fb430ca982fbd);
            
        

        poly_line_14d869a6310ce60741103211803e52c0.bindPopup(popup_786faf1c893a249532902e2580be76b1)
        ;

        
    
    
            var poly_line_c43995b8bda269f8a94ef4b4b4a796ad = L.polyline(
                [[41.9098508, -87.6464174], [41.9097076, -87.6462128], [41.9096689, -87.6461576]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_505e3db9bb2d968cd8f88c37d3e7260a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4b707c3ebc9c80b27ab68f66e0ff0da7 = $(`<div id=&quot;html_4b707c3ebc9c80b27ab68f66e0ff0da7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185257 → 2387185348 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/232029419&quot; target=&quot;_blank&quot;>232029419</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>29.51783872334849</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_505e3db9bb2d968cd8f88c37d3e7260a.setContent(html_4b707c3ebc9c80b27ab68f66e0ff0da7);
            
        

        poly_line_c43995b8bda269f8a94ef4b4b4a796ad.bindPopup(popup_505e3db9bb2d968cd8f88c37d3e7260a)
        ;

        
    
    
            var poly_line_48b2b4212cb67608d1cf861d196c3f7b = L.polyline(
                [[41.9095187, -87.6466251], [41.9094817, -87.6465724], [41.9094079, -87.6464675]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a101ec5be5b987fbd4f309c23ebc5a50 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_29df6672f965b91c25e7d4548bdac21c = $(`<div id=&quot;html_29df6672f965b91c25e7d4548bdac21c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185261 → 2387185281 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187830&quot; target=&quot;_blank&quot;>230187830</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>17.940932611148842</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_a101ec5be5b987fbd4f309c23ebc5a50.setContent(html_29df6672f965b91c25e7d4548bdac21c);
            
        

        poly_line_48b2b4212cb67608d1cf861d196c3f7b.bindPopup(popup_a101ec5be5b987fbd4f309c23ebc5a50)
        ;

        
    
    
            var poly_line_b926afdf2ad0eb6dfa389388e9ad2646 = L.polyline(
                [[41.9095187, -87.6466251], [41.9097451, -87.646947], [41.909796, -87.6470194]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2c66f9bf6d9bea1cb7ec284b5d6aa66b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c09117ac718c3413acf2fefdfb3a01b9 = $(`<div id=&quot;html_c09117ac718c3413acf2fefdfb3a01b9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185261 → 2387185350 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187830&quot; target=&quot;_blank&quot;>230187830</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>44.89320909392748</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_2c66f9bf6d9bea1cb7ec284b5d6aa66b.setContent(html_c09117ac718c3413acf2fefdfb3a01b9);
            
        

        poly_line_b926afdf2ad0eb6dfa389388e9ad2646.bindPopup(popup_2c66f9bf6d9bea1cb7ec284b5d6aa66b)
        ;

        
    
    
            var poly_line_aade6ae69255790e5652b222aa9233d4 = L.polyline(
                [[41.9095187, -87.6466251], [41.9094868, -87.6466666], [41.9092657, -87.6469545]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ee6d1c2f29fd0578d000250acd5e6163 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f55cdc469cd7665211ce7ee3dd6094e3 = $(`<div id=&quot;html_f55cdc469cd7665211ce7ee3dd6094e3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185261 → 2387185386 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187838&quot; target=&quot;_blank&quot;>230187838</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>39.17204116186255</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_ee6d1c2f29fd0578d000250acd5e6163.setContent(html_f55cdc469cd7665211ce7ee3dd6094e3);
            
        

        poly_line_aade6ae69255790e5652b222aa9233d4.bindPopup(popup_ee6d1c2f29fd0578d000250acd5e6163)
        ;

        
    
    
            var poly_line_7cf1ee99847ce0eb9872eeb2b232b4b9 = L.polyline(
                [[41.9089065, -87.6464799], [41.9091477, -87.6461772], [41.9091736, -87.6461445]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_df9904e0acab3f78fbe18b46ad531315 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8c917955c35ec413b62f84f4da15b190 = $(`<div id=&quot;html_8c917955c35ec413b62f84f4da15b190&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185280 → 2387185394 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187848&quot; target=&quot;_blank&quot;>230187848</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>40.65028930128106</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_df9904e0acab3f78fbe18b46ad531315.setContent(html_8c917955c35ec413b62f84f4da15b190);
            
        

        poly_line_7cf1ee99847ce0eb9872eeb2b232b4b9.bindPopup(popup_df9904e0acab3f78fbe18b46ad531315)
        ;

        
    
    
            var poly_line_80afcc8fe601ef712ccbd9b1151f6ab2 = L.polyline(
                [[41.9094079, -87.6464675], [41.9093889, -87.6464673], [41.9093596, -87.646457]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2d5f0c69ae0557cd8c37909a0840a33c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b7d2f67418cc8949204526e44ebece49 = $(`<div id=&quot;html_b7d2f67418cc8949204526e44ebece49&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185281 → 2387185384 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187830&quot; target=&quot;_blank&quot;>230187830</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>5.480434482602584</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_2d5f0c69ae0557cd8c37909a0840a33c.setContent(html_b7d2f67418cc8949204526e44ebece49);
            
        

        poly_line_80afcc8fe601ef712ccbd9b1151f6ab2.bindPopup(popup_2d5f0c69ae0557cd8c37909a0840a33c)
        ;

        
    
    
            var poly_line_6785689e7001b3810468b3c151eb7a0f = L.polyline(
                [[41.9094079, -87.6464675], [41.9094817, -87.6465724], [41.9095187, -87.6466251]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f52bb65db990f603365596d72451d1f6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_649b535f273cfa3e557ad44515cbeffb = $(`<div id=&quot;html_649b535f273cfa3e557ad44515cbeffb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185281 → 2387185261 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187830&quot; target=&quot;_blank&quot;>230187830</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>17.940932611148842</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_f52bb65db990f603365596d72451d1f6.setContent(html_649b535f273cfa3e557ad44515cbeffb);
            
        

        poly_line_6785689e7001b3810468b3c151eb7a0f.bindPopup(popup_f52bb65db990f603365596d72451d1f6)
        ;

        
    
    
            var poly_line_c5147aa899235a38eb4596911fd8a9b2 = L.polyline(
                [[41.9094079, -87.6464675], [41.9094285, -87.6464621], [41.9094474, -87.6464449], [41.9096689, -87.6461576]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6e75f00f18258d7b4344a746619012aa = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0e090fc4f8289f1c10158f238905144a = $(`<div id=&quot;html_0e090fc4f8289f1c10158f238905144a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185281 → 2387185348 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187835&quot; target=&quot;_blank&quot;>230187835</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>39.104283037533904</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_6e75f00f18258d7b4344a746619012aa.setContent(html_0e090fc4f8289f1c10158f238905144a);
            
        

        poly_line_c5147aa899235a38eb4596911fd8a9b2.bindPopup(popup_6e75f00f18258d7b4344a746619012aa)
        ;

        
    
    
            var poly_line_a58483fcac5cae8aeb290e3de1652ef5 = L.polyline(
                [[41.9089922, -87.6468571], [41.9090319, -87.6467787]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3b2d3e7e560ca279901d40de34133a88 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_26a0edd7b4dbd4d2f60b9a69aaff02f0 = $(`<div id=&quot;html_26a0edd7b4dbd4d2f60b9a69aaff02f0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185283 → 12049414915 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187857&quot; target=&quot;_blank&quot;>230187857</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.847191635930738</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_3b2d3e7e560ca279901d40de34133a88.setContent(html_26a0edd7b4dbd4d2f60b9a69aaff02f0);
            
        

        poly_line_a58483fcac5cae8aeb290e3de1652ef5.bindPopup(popup_3b2d3e7e560ca279901d40de34133a88)
        ;

        
    
    
            var poly_line_70070d44bcc3737e1468d6140377c24a = L.polyline(
                [[41.9089922, -87.6468571], [41.9091703, -87.6471045]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9f8336fa66c25f108e9624ce38a2de57 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_78d398562bc248423e75041550dada48 = $(`<div id=&quot;html_78d398562bc248423e75041550dada48&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185283 → 12049414897 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435397259&quot; target=&quot;_blank&quot;>435397259</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>28.483850970322564</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Clybourn Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_9f8336fa66c25f108e9624ce38a2de57.setContent(html_78d398562bc248423e75041550dada48);
            
        

        poly_line_70070d44bcc3737e1468d6140377c24a.bindPopup(popup_9f8336fa66c25f108e9624ce38a2de57)
        ;

        
    
    
            var poly_line_1f155db40125b405155fb2d0bc418546 = L.polyline(
                [[41.9089922, -87.6468571], [41.9089216, -87.646759], [41.9086039, -87.6463176], [41.9083708, -87.6459937]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_cd4dded973daa9fc1f202d14d4072da8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_cb62c3713d7f86d06399173483ce635e = $(`<div id=&quot;html_cb62c3713d7f86d06399173483ce635e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185283 → 12049414903 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435397259&quot; target=&quot;_blank&quot;>435397259</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>99.3943504350123</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Clybourn Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_cd4dded973daa9fc1f202d14d4072da8.setContent(html_cb62c3713d7f86d06399173483ce635e);
            
        

        poly_line_1f155db40125b405155fb2d0bc418546.bindPopup(popup_cd4dded973daa9fc1f202d14d4072da8)
        ;

        
    
    
            var poly_line_99dd40560ae88fc7f573d33032ad57f6 = L.polyline(
                [[41.9050337, -87.6454846], [41.905028, -87.6458237]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0719c15ee996f53b33a48d4d0cd01acc = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_82d1efce1c9045c9a84227e6c17cc852 = $(`<div id=&quot;html_82d1efce1c9045c9a84227e6c17cc852&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185294 → 6782716242 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59586637&quot; target=&quot;_blank&quot;>59586637</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>28.070144743246285</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Scott Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_0719c15ee996f53b33a48d4d0cd01acc.setContent(html_82d1efce1c9045c9a84227e6c17cc852);
            
        

        poly_line_99dd40560ae88fc7f573d33032ad57f6.bindPopup(popup_0719c15ee996f53b33a48d4d0cd01acc)
        ;

        
    
    
            var poly_line_d33a8089116a3f6b30845b881a2f360f = L.polyline(
                [[41.9050337, -87.6454846], [41.9050348, -87.6453846]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f041404e479f0ee67da63cb89685a55f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d89312e0cdbc7760d864a734d3fcbe74 = $(`<div id=&quot;html_d89312e0cdbc7760d864a734d3fcbe74&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185294 → 9879287204 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59586637&quot; target=&quot;_blank&quot;>59586637</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>8.276629811754034</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Scott Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_f041404e479f0ee67da63cb89685a55f.setContent(html_d89312e0cdbc7760d864a734d3fcbe74);
            
        

        poly_line_d33a8089116a3f6b30845b881a2f360f.bindPopup(popup_f041404e479f0ee67da63cb89685a55f)
        ;

        
    
    
            var poly_line_9a44b5d21ac72df030abc5392fa5367b = L.polyline(
                [[41.9050337, -87.6454846], [41.9049821, -87.6454828], [41.9049019, -87.64548]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0f08ad7003aa79107d21ac52cc220d70 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3599a942e24031cf168ce63d866bcb0c = $(`<div id=&quot;html_3599a942e24031cf168ce63d866bcb0c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185294 → 2387185340 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187855&quot; target=&quot;_blank&quot;>230187855</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>14.66045542162643</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_0f08ad7003aa79107d21ac52cc220d70.setContent(html_3599a942e24031cf168ce63d866bcb0c);
            
        

        poly_line_9a44b5d21ac72df030abc5392fa5367b.bindPopup(popup_0f08ad7003aa79107d21ac52cc220d70)
        ;

        
    
    
            var poly_line_b912fb486b4fd334e9ca0b4acaa4a200 = L.polyline(
                [[41.9095528, -87.6459917], [41.9096689, -87.6461576]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f05ab175f5879a83cb36b0b31e35fb4f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d0626ec3f10580dc09cc6ddb65230d6b = $(`<div id=&quot;html_d0626ec3f10580dc09cc6ddb65230d6b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185299 → 2387185348 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/232029419&quot; target=&quot;_blank&quot;>232029419</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.84494180899273</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_f05ab175f5879a83cb36b0b31e35fb4f.setContent(html_d0626ec3f10580dc09cc6ddb65230d6b);
            
        

        poly_line_b912fb486b4fd334e9ca0b4acaa4a200.bindPopup(popup_f05ab175f5879a83cb36b0b31e35fb4f)
        ;

        
    
    
            var poly_line_5f45da09fe1c1decef03023eee349d18 = L.polyline(
                [[41.9095528, -87.6459917], [41.9093236, -87.6462786], [41.9093118, -87.6463019], [41.909306, -87.6463275]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b6d295999051b7f86c1c5f755d416d6d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_defdaaab59dfde217558da97f68e325a = $(`<div id=&quot;html_defdaaab59dfde217558da97f68e325a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185299 → 2387185373 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187844&quot; target=&quot;_blank&quot;>230187844</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>39.37748785686977</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_b6d295999051b7f86c1c5f755d416d6d.setContent(html_defdaaab59dfde217558da97f68e325a);
            
        

        poly_line_5f45da09fe1c1decef03023eee349d18.bindPopup(popup_b6d295999051b7f86c1c5f755d416d6d)
        ;

        
    
    
            var poly_line_5db201e5673ba0999ef29b209d3b1847 = L.polyline(
                [[41.9095528, -87.6459917], [41.9095063, -87.6459253], [41.909368, -87.6457278]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_cc558c236407f518417b8872faca65d0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1790f7256fb59694ae66454e32e38709 = $(`<div id=&quot;html_1790f7256fb59694ae66454e32e38709&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185299 → 2387185336 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/232029419&quot; target=&quot;_blank&quot;>232029419</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>29.985981305856853</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_cc558c236407f518417b8872faca65d0.setContent(html_1790f7256fb59694ae66454e32e38709);
            
        

        poly_line_5db201e5673ba0999ef29b209d3b1847.bindPopup(popup_cc558c236407f518417b8872faca65d0)
        ;

        
    
    
            var poly_line_1149c19ed1310897b8dd080bbde5fe6c = L.polyline(
                [[41.9090402, -87.6451574], [41.9086533, -87.6454256]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_abc0ec562a17127ddaa0e69179ed8874 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_67e83df9d90363d27f8d817dbd26b554 = $(`<div id=&quot;html_67e83df9d90363d27f8d817dbd26b554&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185310 → 2387185359 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187840&quot; target=&quot;_blank&quot;>230187840</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>48.4088856356757</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_abc0ec562a17127ddaa0e69179ed8874.setContent(html_67e83df9d90363d27f8d817dbd26b554);
            
        

        poly_line_1149c19ed1310897b8dd080bbde5fe6c.bindPopup(popup_abc0ec562a17127ddaa0e69179ed8874)
        ;

        
    
    
            var poly_line_cb3373d0824cfc5e952a56e4660ebc38 = L.polyline(
                [[41.9093117, -87.646397], [41.9093596, -87.646457]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c4eb171fa3d51145887c2c846dc4d5c3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7ea0f0b085d2d35c5cda33a2b657066c = $(`<div id=&quot;html_7ea0f0b085d2d35c5cda33a2b657066c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185316 → 2387185384 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187830&quot; target=&quot;_blank&quot;>230187830</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.281559507615797</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_c4eb171fa3d51145887c2c846dc4d5c3.setContent(html_7ea0f0b085d2d35c5cda33a2b657066c);
            
        

        poly_line_cb3373d0824cfc5e952a56e4660ebc38.bindPopup(popup_c4eb171fa3d51145887c2c846dc4d5c3)
        ;

        
    
    
            var poly_line_d2df47bb3356544ae96050d74064ffb8 = L.polyline(
                [[41.9093117, -87.646397], [41.9093046, -87.6463582], [41.909306, -87.6463275]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1a36c3bf3386ba9b012971770985fb89 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d92d43667fde2b287759d254de6fb0c0 = $(`<div id=&quot;html_d92d43667fde2b287759d254de6fb0c0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185316 → 2387185373 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187830&quot; target=&quot;_blank&quot;>230187830</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>5.851647368336977</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_1a36c3bf3386ba9b012971770985fb89.setContent(html_d92d43667fde2b287759d254de6fb0c0);
            
        

        poly_line_d2df47bb3356544ae96050d74064ffb8.bindPopup(popup_1a36c3bf3386ba9b012971770985fb89)
        ;

        
    
    
            var poly_line_fd16098f3de0d5eee2c82ef615c0e4c6 = L.polyline(
                [[41.909368, -87.6457278], [41.9091959, -87.6454819], [41.9092717, -87.6453881], [41.9094441, -87.6456326], [41.909368, -87.6457278]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_21ac8b6f6bd9e4ea5ab6146dfe6804a4 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b38994e3200be1c3975cf8b54c268a9a = $(`<div id=&quot;html_b38994e3200be1c3975cf8b54c268a9a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185336 → 2387185336 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/232029416&quot; target=&quot;_blank&quot;>232029416</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>78.82530603753891</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_21ac8b6f6bd9e4ea5ab6146dfe6804a4.setContent(html_b38994e3200be1c3975cf8b54c268a9a);
            
        

        poly_line_fd16098f3de0d5eee2c82ef615c0e4c6.bindPopup(popup_21ac8b6f6bd9e4ea5ab6146dfe6804a4)
        ;

        
    
    
            var poly_line_18174b01368cab32f26bb08d972c8a30 = L.polyline(
                [[41.909368, -87.6457278], [41.9094441, -87.6456326], [41.9092717, -87.6453881], [41.9091959, -87.6454819], [41.909368, -87.6457278]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_59b5509718d60da6e9a08e3dfbae90cd = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c90482ce19eeb0809f3fc04474244678 = $(`<div id=&quot;html_c90482ce19eeb0809f3fc04474244678&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185336 → 2387185336 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/232029416&quot; target=&quot;_blank&quot;>232029416</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>78.82530603753891</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_59b5509718d60da6e9a08e3dfbae90cd.setContent(html_c90482ce19eeb0809f3fc04474244678);
            
        

        poly_line_18174b01368cab32f26bb08d972c8a30.bindPopup(popup_59b5509718d60da6e9a08e3dfbae90cd)
        ;

        
    
    
            var poly_line_ac0545449f07b213f6b7da316504d052 = L.polyline(
                [[41.909368, -87.6457278], [41.9095063, -87.6459253], [41.9095528, -87.6459917]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1ef3ab48699b1519fd37b7b327bab888 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9a58d129d8790e3ce8823858e3123283 = $(`<div id=&quot;html_9a58d129d8790e3ce8823858e3123283&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185336 → 2387185299 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/232029419&quot; target=&quot;_blank&quot;>232029419</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>29.985981305856853</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_1ef3ab48699b1519fd37b7b327bab888.setContent(html_9a58d129d8790e3ce8823858e3123283);
            
        

        poly_line_ac0545449f07b213f6b7da316504d052.bindPopup(popup_1ef3ab48699b1519fd37b7b327bab888)
        ;

        
    
    
            var poly_line_d50b494b2cd1e5e8f7f013b8de664154 = L.polyline(
                [[41.9049019, -87.64548], [41.9048942, -87.6458253], [41.904487, -87.6458172], [41.904491, -87.6455597], [41.9048044, -87.6454766], [41.9049019, -87.64548]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_08f402a30428751129b3c793d7115ab7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d701a5330be5d0f30fce7b50254a65fe = $(`<div id=&quot;html_d701a5330be5d0f30fce7b50254a65fe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185340 → 2387185340 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187849&quot; target=&quot;_blank&quot;>230187849</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>141.55319947400326</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_08f402a30428751129b3c793d7115ab7.setContent(html_d701a5330be5d0f30fce7b50254a65fe);
            
        

        poly_line_d50b494b2cd1e5e8f7f013b8de664154.bindPopup(popup_08f402a30428751129b3c793d7115ab7)
        ;

        
    
    
            var poly_line_117d326128563ff78b1458e5a2e2f95d = L.polyline(
                [[41.9049019, -87.64548], [41.9048044, -87.6454766], [41.904491, -87.6455597], [41.904487, -87.6458172], [41.9048942, -87.6458253], [41.9049019, -87.64548]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_965fe989fe0de74e27d2b08dedd3507c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d92cac6c8b0ef83006145af058c9885c = $(`<div id=&quot;html_d92cac6c8b0ef83006145af058c9885c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185340 → 2387185340 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187849&quot; target=&quot;_blank&quot;>230187849</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>141.55319947400326</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_965fe989fe0de74e27d2b08dedd3507c.setContent(html_d92cac6c8b0ef83006145af058c9885c);
            
        

        poly_line_117d326128563ff78b1458e5a2e2f95d.bindPopup(popup_965fe989fe0de74e27d2b08dedd3507c)
        ;

        
    
    
            var poly_line_d40660c2271b40a786cac45ec53f39d3 = L.polyline(
                [[41.9049019, -87.64548], [41.9049821, -87.6454828], [41.9050337, -87.6454846]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_eae82048666ac2b41d49c659e375a095 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_191c692828972141f9f89259ab51a950 = $(`<div id=&quot;html_191c692828972141f9f89259ab51a950&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185340 → 2387185294 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187855&quot; target=&quot;_blank&quot;>230187855</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>14.66045542162643</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_eae82048666ac2b41d49c659e375a095.setContent(html_191c692828972141f9f89259ab51a950);
            
        

        poly_line_d40660c2271b40a786cac45ec53f39d3.bindPopup(popup_eae82048666ac2b41d49c659e375a095)
        ;

        
    
    
            var poly_line_783837adf62784d364a5ad5d6f472d04 = L.polyline(
                [[41.9096689, -87.6461576], [41.9095528, -87.6459917]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2043b653bee62bae8486412a5dc3a040 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fed923db0824222d02ce0b5959298cbb = $(`<div id=&quot;html_fed923db0824222d02ce0b5959298cbb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185348 → 2387185299 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/232029419&quot; target=&quot;_blank&quot;>232029419</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.84494180899273</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_2043b653bee62bae8486412a5dc3a040.setContent(html_fed923db0824222d02ce0b5959298cbb);
            
        

        poly_line_783837adf62784d364a5ad5d6f472d04.bindPopup(popup_2043b653bee62bae8486412a5dc3a040)
        ;

        
    
    
            var poly_line_ffcf8aecfabbb4f7283b8fef8f0bfd66 = L.polyline(
                [[41.9096689, -87.6461576], [41.9094474, -87.6464449], [41.9094285, -87.6464621], [41.9094079, -87.6464675]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2129d10638cc073a416413a050231263 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_393bf6e15a9917d311eb05e118e852e9 = $(`<div id=&quot;html_393bf6e15a9917d311eb05e118e852e9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185348 → 2387185281 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187835&quot; target=&quot;_blank&quot;>230187835</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>39.104283037533904</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_2129d10638cc073a416413a050231263.setContent(html_393bf6e15a9917d311eb05e118e852e9);
            
        

        poly_line_ffcf8aecfabbb4f7283b8fef8f0bfd66.bindPopup(popup_2129d10638cc073a416413a050231263)
        ;

        
    
    
            var poly_line_5cff69031dfa7a45a0fe0715977d973c = L.polyline(
                [[41.9096689, -87.6461576], [41.9097076, -87.6462128], [41.9098508, -87.6464174]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6d74d437d1cf168e8330aea83af0d905 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0c2b1bab44f1fea4f284548805f8a4b3 = $(`<div id=&quot;html_0c2b1bab44f1fea4f284548805f8a4b3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185348 → 2387185257 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/232029419&quot; target=&quot;_blank&quot;>232029419</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>29.51783872334849</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_6d74d437d1cf168e8330aea83af0d905.setContent(html_0c2b1bab44f1fea4f284548805f8a4b3);
            
        

        poly_line_5cff69031dfa7a45a0fe0715977d973c.bindPopup(popup_6d74d437d1cf168e8330aea83af0d905)
        ;

        
    
    
            var poly_line_8b5c1f94c6c9e6a0b44ee7ad5034d3d4 = L.polyline(
                [[41.909796, -87.6470194], [41.9099644, -87.646807]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a4cc3401bc6d3478669ae2bebac1e399 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6a4525fb9bea2a467182f3885a01a207 = $(`<div id=&quot;html_6a4525fb9bea2a467182f3885a01a207&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185350 → 2387185378 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187841&quot; target=&quot;_blank&quot;>230187841</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>25.681932546795768</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_a4cc3401bc6d3478669ae2bebac1e399.setContent(html_6a4525fb9bea2a467182f3885a01a207);
            
        

        poly_line_8b5c1f94c6c9e6a0b44ee7ad5034d3d4.bindPopup(popup_a4cc3401bc6d3478669ae2bebac1e399)
        ;

        
    
    
            var poly_line_f699224c8969f026c2f99a68de38e8a3 = L.polyline(
                [[41.909796, -87.6470194], [41.9097451, -87.646947], [41.9095187, -87.6466251]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_25315ca482ebc411eec1f0f078166865 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c423c81837a203b2ca37c7ba40b0c0a3 = $(`<div id=&quot;html_c423c81837a203b2ca37c7ba40b0c0a3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185350 → 2387185261 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187830&quot; target=&quot;_blank&quot;>230187830</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>44.89320909392748</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_25315ca482ebc411eec1f0f078166865.setContent(html_c423c81837a203b2ca37c7ba40b0c0a3);
            
        

        poly_line_f699224c8969f026c2f99a68de38e8a3.bindPopup(popup_25315ca482ebc411eec1f0f078166865)
        ;

        
    
    
            var poly_line_e769c76ae328589faa2739f807139fe1 = L.polyline(
                [[41.909796, -87.6470194], [41.9098418, -87.6470845], [41.9099484, -87.6472361]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d0886d3b4cdd616455fcdfe37af22b12 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f6ea07073ab9e38aca93f81cb417954b = $(`<div id=&quot;html_f6ea07073ab9e38aca93f81cb417954b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185350 → 2387185351 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187830&quot; target=&quot;_blank&quot;>230187830</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>24.672514497652262</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_d0886d3b4cdd616455fcdfe37af22b12.setContent(html_f6ea07073ab9e38aca93f81cb417954b);
            
        

        poly_line_e769c76ae328589faa2739f807139fe1.bindPopup(popup_d0886d3b4cdd616455fcdfe37af22b12)
        ;

        
    
    
            var poly_line_f3621422cd2d33ddf04f2f867c94f11d = L.polyline(
                [[41.9099484, -87.6472361], [41.9098418, -87.6470845], [41.909796, -87.6470194]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4df454d35892e1d23625b549c8a18781 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4bff0f7595719299943dbb619b527425 = $(`<div id=&quot;html_4bff0f7595719299943dbb619b527425&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185351 → 2387185350 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187830&quot; target=&quot;_blank&quot;>230187830</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>24.672514497652262</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_4df454d35892e1d23625b549c8a18781.setContent(html_4bff0f7595719299943dbb619b527425);
            
        

        poly_line_f3621422cd2d33ddf04f2f867c94f11d.bindPopup(popup_4df454d35892e1d23625b549c8a18781)
        ;

        
    
    
            var poly_line_e9f529c9c65b26811161c33a975515fc = L.polyline(
                [[41.908963, -87.6458535], [41.9086533, -87.6454256]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3769a2cbe8bf417243cc9144a45ae912 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f8d92e529c57ebaf8a56364fd00385c9 = $(`<div id=&quot;html_f8d92e529c57ebaf8a56364fd00385c9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185357 → 2387185359 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187830&quot; target=&quot;_blank&quot;>230187830</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>49.39397343391241</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_3769a2cbe8bf417243cc9144a45ae912.setContent(html_f8d92e529c57ebaf8a56364fd00385c9);
            
        

        poly_line_e9f529c9c65b26811161c33a975515fc.bindPopup(popup_3769a2cbe8bf417243cc9144a45ae912)
        ;

        
    
    
            var poly_line_b65d13fb3bfa48603c5e1d27058c726d = L.polyline(
                [[41.908963, -87.6458535], [41.9091736, -87.6461445]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2cb17ee87d3dd0f8aab8b824b47a9e6a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5bf7c4e505d71e2176d96440e8cf2214 = $(`<div id=&quot;html_5bf7c4e505d71e2176d96440e8cf2214&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185357 → 2387185394 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187830&quot; target=&quot;_blank&quot;>230187830</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>33.589802770934526</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_2cb17ee87d3dd0f8aab8b824b47a9e6a.setContent(html_5bf7c4e505d71e2176d96440e8cf2214);
            
        

        poly_line_b65d13fb3bfa48603c5e1d27058c726d.bindPopup(popup_2cb17ee87d3dd0f8aab8b824b47a9e6a)
        ;

        
    
    
            var poly_line_89250592449294ee435f3d1c4bfae4c1 = L.polyline(
                [[41.908963, -87.6458535], [41.9089377, -87.6458863], [41.9089351, -87.6458897], [41.9086996, -87.6461885]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9320d53ada974aea6b68a3f6488e2cb7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_420c94ce7b7b684cc028503790f4e1e8 = $(`<div id=&quot;html_420c94ce7b7b684cc028503790f4e1e8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185357 → 5689513348 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187854&quot; target=&quot;_blank&quot;>230187854</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>40.32819983434379</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_9320d53ada974aea6b68a3f6488e2cb7.setContent(html_420c94ce7b7b684cc028503790f4e1e8);
            
        

        poly_line_89250592449294ee435f3d1c4bfae4c1.bindPopup(popup_9320d53ada974aea6b68a3f6488e2cb7)
        ;

        
    
    
            var poly_line_ef147c214fbc9dd96990d7d1d9d72f79 = L.polyline(
                [[41.9086533, -87.6454256], [41.908963, -87.6458535]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_077591dbd2846502f6d47670dc8bf29a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3f8003e876eb64b99972a2aabe1dd759 = $(`<div id=&quot;html_3f8003e876eb64b99972a2aabe1dd759&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185359 → 2387185357 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187830&quot; target=&quot;_blank&quot;>230187830</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>49.39397343391241</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_077591dbd2846502f6d47670dc8bf29a.setContent(html_3f8003e876eb64b99972a2aabe1dd759);
            
        

        poly_line_ef147c214fbc9dd96990d7d1d9d72f79.bindPopup(popup_077591dbd2846502f6d47670dc8bf29a)
        ;

        
    
    
            var poly_line_de908c0764641641d4c5a67ca73de964 = L.polyline(
                [[41.9086533, -87.6454256], [41.9090402, -87.6451574]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8de7a62666d06f59bd160ff6b2298022 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c8f74a3fd4b4b20aa1a88ada01e1be65 = $(`<div id=&quot;html_c8f74a3fd4b4b20aa1a88ada01e1be65&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185359 → 2387185310 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187840&quot; target=&quot;_blank&quot;>230187840</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>48.4088856356757</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_8de7a62666d06f59bd160ff6b2298022.setContent(html_c8f74a3fd4b4b20aa1a88ada01e1be65);
            
        

        poly_line_de908c0764641641d4c5a67ca73de964.bindPopup(popup_8de7a62666d06f59bd160ff6b2298022)
        ;

        
    
    
            var poly_line_93435cf09af09dac2441bc9c1fb2671a = L.polyline(
                [[41.9086533, -87.6454256], [41.9084512, -87.6455657], [41.908303, -87.6456685]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3ed742aec52c206def5bcae3bec35279 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f9ce0e4426b4513798a7282a9234c97d = $(`<div id=&quot;html_f9ce0e4426b4513798a7282a9234c97d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185359 → 10801700709 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187840&quot; target=&quot;_blank&quot;>230187840</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>43.83225311304096</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_3ed742aec52c206def5bcae3bec35279.setContent(html_f9ce0e4426b4513798a7282a9234c97d);
            
        

        poly_line_93435cf09af09dac2441bc9c1fb2671a.bindPopup(popup_3ed742aec52c206def5bcae3bec35279)
        ;

        
    
    
            var poly_line_b1db80b0c6233280ca90f9e8b8c52c26 = L.polyline(
                [[41.909306, -87.6463275], [41.9092364, -87.6462312], [41.9091736, -87.6461445]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1f2dbee980e875dafe49f0177ae01e8d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_bf070ba6ce5d6d72039f4420863dcbd7 = $(`<div id=&quot;html_bf070ba6ce5d6d72039f4420863dcbd7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185373 → 2387185394 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187830&quot; target=&quot;_blank&quot;>230187830</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.1204215407788</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_1f2dbee980e875dafe49f0177ae01e8d.setContent(html_bf070ba6ce5d6d72039f4420863dcbd7);
            
        

        poly_line_b1db80b0c6233280ca90f9e8b8c52c26.bindPopup(popup_1f2dbee980e875dafe49f0177ae01e8d)
        ;

        
    
    
            var poly_line_47cc6ab56a6db7ca2a491640ed3b9cca = L.polyline(
                [[41.909306, -87.6463275], [41.9093046, -87.6463582], [41.9093117, -87.646397]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_40b77f903213aab05aec0f12775bd01d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_aa6fd7d68f95a58dd7c703ee17f34922 = $(`<div id=&quot;html_aa6fd7d68f95a58dd7c703ee17f34922&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185373 → 2387185316 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187830&quot; target=&quot;_blank&quot;>230187830</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>5.851647368336977</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_40b77f903213aab05aec0f12775bd01d.setContent(html_aa6fd7d68f95a58dd7c703ee17f34922);
            
        

        poly_line_47cc6ab56a6db7ca2a491640ed3b9cca.bindPopup(popup_40b77f903213aab05aec0f12775bd01d)
        ;

        
    
    
            var poly_line_37389dd625f7fd2f48d09aaeffb11153 = L.polyline(
                [[41.909306, -87.6463275], [41.9093118, -87.6463019], [41.9093236, -87.6462786], [41.9095528, -87.6459917]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c9be2ba407bd59645433e6ac094db17a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_487b52c739d6cd22d27d5427f39039fd = $(`<div id=&quot;html_487b52c739d6cd22d27d5427f39039fd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185373 → 2387185299 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187844&quot; target=&quot;_blank&quot;>230187844</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>39.37748785686977</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_c9be2ba407bd59645433e6ac094db17a.setContent(html_487b52c739d6cd22d27d5427f39039fd);
            
        

        poly_line_37389dd625f7fd2f48d09aaeffb11153.bindPopup(popup_c9be2ba407bd59645433e6ac094db17a)
        ;

        
    
    
            var poly_line_ee79052f9d18f7f9f3be2b38d66717fc = L.polyline(
                [[41.9099644, -87.646807], [41.909796, -87.6470194]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_99677d5fcc48a2e07c8bae97e0711730 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_91b4deec76764c19c90b64e27b02d956 = $(`<div id=&quot;html_91b4deec76764c19c90b64e27b02d956&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185378 → 2387185350 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187841&quot; target=&quot;_blank&quot;>230187841</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>25.681932546795768</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_99677d5fcc48a2e07c8bae97e0711730.setContent(html_91b4deec76764c19c90b64e27b02d956);
            
        

        poly_line_ee79052f9d18f7f9f3be2b38d66717fc.bindPopup(popup_99677d5fcc48a2e07c8bae97e0711730)
        ;

        
    
    
            var poly_line_b4511476e8743a009e0a6d6d364e229b = L.polyline(
                [[41.9093596, -87.646457], [41.9093117, -87.646397]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_936840e04e769cb408dfd5d513befa8d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e5bd4c92dd1b1b970106e408b150b7d9 = $(`<div id=&quot;html_e5bd4c92dd1b1b970106e408b150b7d9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185384 → 2387185316 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187830&quot; target=&quot;_blank&quot;>230187830</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.281559507615797</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_936840e04e769cb408dfd5d513befa8d.setContent(html_e5bd4c92dd1b1b970106e408b150b7d9);
            
        

        poly_line_b4511476e8743a009e0a6d6d364e229b.bindPopup(popup_936840e04e769cb408dfd5d513befa8d)
        ;

        
    
    
            var poly_line_9247ff77f19d673c74e6422f99b9f747 = L.polyline(
                [[41.9093596, -87.646457], [41.9093889, -87.6464673], [41.9094079, -87.6464675]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2c73f15128d9d523225070083bead9f9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6f11373c0f39b7ee735b6bd076fd053a = $(`<div id=&quot;html_6f11373c0f39b7ee735b6bd076fd053a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185384 → 2387185281 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187830&quot; target=&quot;_blank&quot;>230187830</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>5.480434482602584</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_2c73f15128d9d523225070083bead9f9.setContent(html_6f11373c0f39b7ee735b6bd076fd053a);
            
        

        poly_line_9247ff77f19d673c74e6422f99b9f747.bindPopup(popup_2c73f15128d9d523225070083bead9f9)
        ;

        
    
    
            var poly_line_1492ce0aa0db002bade339187879817e = L.polyline(
                [[41.9093596, -87.646457], [41.90912, -87.6467533], [41.9090528, -87.6468078]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f800e52841c539c77cf10f89e67cc14b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e087c85a13ca9068769372e3fa03fa24 = $(`<div id=&quot;html_e087c85a13ca9068769372e3fa03fa24&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185384 → 12049414916 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187831&quot; target=&quot;_blank&quot;>230187831</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>44.935769871540074</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_f800e52841c539c77cf10f89e67cc14b.setContent(html_e087c85a13ca9068769372e3fa03fa24);
            
        

        poly_line_1492ce0aa0db002bade339187879817e.bindPopup(popup_f800e52841c539c77cf10f89e67cc14b)
        ;

        
    
    
            var poly_line_cb58d51208a326981bcecf6007e8a36c = L.polyline(
                [[41.9092657, -87.6469545], [41.9094868, -87.6466666], [41.9095187, -87.6466251]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fdba74e01cf5fc0916296d8e3d2d391d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8f173405faefa9328017ab3b9205ce0c = $(`<div id=&quot;html_8f173405faefa9328017ab3b9205ce0c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185386 → 2387185261 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187838&quot; target=&quot;_blank&quot;>230187838</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>39.17204116186255</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_fdba74e01cf5fc0916296d8e3d2d391d.setContent(html_8f173405faefa9328017ab3b9205ce0c);
            
        

        poly_line_cb58d51208a326981bcecf6007e8a36c.bindPopup(popup_fdba74e01cf5fc0916296d8e3d2d391d)
        ;

        
    
    
            var poly_line_357a70bf9b281070bfda053a71057982 = L.polyline(
                [[41.9091736, -87.6461445], [41.908963, -87.6458535]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a135f0dc728ad7d7ae7b49071c1360c4 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ac96c6ff9493cb4d2ff66247b1a416b3 = $(`<div id=&quot;html_ac96c6ff9493cb4d2ff66247b1a416b3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185394 → 2387185357 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187830&quot; target=&quot;_blank&quot;>230187830</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>33.589802770934526</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_a135f0dc728ad7d7ae7b49071c1360c4.setContent(html_ac96c6ff9493cb4d2ff66247b1a416b3);
            
        

        poly_line_357a70bf9b281070bfda053a71057982.bindPopup(popup_a135f0dc728ad7d7ae7b49071c1360c4)
        ;

        
    
    
            var poly_line_13540c1af11510e717dd48eb8204246b = L.polyline(
                [[41.9091736, -87.6461445], [41.9092364, -87.6462312], [41.909306, -87.6463275]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6863aa6e614140a0228e6dc654c3bf59 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_34d8a399ecd93b6d8f410de631973435 = $(`<div id=&quot;html_34d8a399ecd93b6d8f410de631973435&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185394 → 2387185373 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187830&quot; target=&quot;_blank&quot;>230187830</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.1204215407788</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_6863aa6e614140a0228e6dc654c3bf59.setContent(html_34d8a399ecd93b6d8f410de631973435);
            
        

        poly_line_13540c1af11510e717dd48eb8204246b.bindPopup(popup_6863aa6e614140a0228e6dc654c3bf59)
        ;

        
    
    
            var poly_line_a286b8faaae892f778620dd33628ac1b = L.polyline(
                [[41.9091736, -87.6461445], [41.9091477, -87.6461772], [41.9089065, -87.6464799]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4bebbc47b39770a40d6e2939280fd71f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f0a4a9cc1a3d5e48cb51742b4544a7de = $(`<div id=&quot;html_f0a4a9cc1a3d5e48cb51742b4544a7de&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387185394 → 2387185280 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187848&quot; target=&quot;_blank&quot;>230187848</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>40.65028930128106</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_4bebbc47b39770a40d6e2939280fd71f.setContent(html_f0a4a9cc1a3d5e48cb51742b4544a7de);
            
        

        poly_line_a286b8faaae892f778620dd33628ac1b.bindPopup(popup_4bebbc47b39770a40d6e2939280fd71f)
        ;

        
    
    
            var poly_line_8e1a90da49ce69d9f2e288fbfe40b5ec = L.polyline(
                [[41.9107189, -87.6472522], [41.9107323, -87.6466215]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_586311a919cb291bb752b044b0bdf0a1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_18b2341a4952c48ca45d663acfb1fb80 = $(`<div id=&quot;html_18b2341a4952c48ca45d663acfb1fb80&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387195189 → 2387195247 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230189113&quot; target=&quot;_blank&quot;>230189113</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>52.2116159408</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_586311a919cb291bb752b044b0bdf0a1.setContent(html_18b2341a4952c48ca45d663acfb1fb80);
            
        

        poly_line_8e1a90da49ce69d9f2e288fbfe40b5ec.bindPopup(popup_586311a919cb291bb752b044b0bdf0a1)
        ;

        
    
    
            var poly_line_8fd96d9dcc594fa78b3399e9a5a8813f = L.polyline(
                [[41.9107189, -87.6472522], [41.910675, -87.6472361], [41.9106349, -87.6472145], [41.9105991, -87.6471878], [41.910575, -87.6471582], [41.9105588, -87.647132], [41.910569, -87.6466142]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3adf84b5b413e10907d78fb8397cd6df = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ad7ff24006967d02457ba8cde2f62c5f = $(`<div id=&quot;html_ad7ff24006967d02457ba8cde2f62c5f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387195189 → 2387195191 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230189115&quot; target=&quot;_blank&quot;>230189115</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>63.728966129106595</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_3adf84b5b413e10907d78fb8397cd6df.setContent(html_ad7ff24006967d02457ba8cde2f62c5f);
            
        

        poly_line_8fd96d9dcc594fa78b3399e9a5a8813f.bindPopup(popup_3adf84b5b413e10907d78fb8397cd6df)
        ;

        
    
    
            var poly_line_404281616c0f6e9aaeac1e36b27ffb14 = L.polyline(
                [[41.9107189, -87.6472522], [41.9107906, -87.6472543], [41.9108585, -87.6472578], [41.9109406, -87.6472572]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ca4a91935c482e84f99bf45c34545196 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_48b7186e4f7c32f4a41cf003792b39c2 = $(`<div id=&quot;html_48b7186e4f7c32f4a41cf003792b39c2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387195189 → 12195807203 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230189117&quot; target=&quot;_blank&quot;>230189117</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>24.659531626016864</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_ca4a91935c482e84f99bf45c34545196.setContent(html_48b7186e4f7c32f4a41cf003792b39c2);
            
        

        poly_line_404281616c0f6e9aaeac1e36b27ffb14.bindPopup(popup_ca4a91935c482e84f99bf45c34545196)
        ;

        
    
    
            var poly_line_69ddcd42b24ebc0bb9d0dadc558b58c9 = L.polyline(
                [[41.910569, -87.6466142], [41.9107323, -87.6466215]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_56606e330bfb9d3c837a58f9a4f03b44 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_dd59e68191b4b74e648b13bf958d91f6 = $(`<div id=&quot;html_dd59e68191b4b74e648b13bf958d91f6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387195191 → 2387195247 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230189127&quot; target=&quot;_blank&quot;>230189127</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.16820239571528</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_56606e330bfb9d3c837a58f9a4f03b44.setContent(html_dd59e68191b4b74e648b13bf958d91f6);
            
        

        poly_line_69ddcd42b24ebc0bb9d0dadc558b58c9.bindPopup(popup_56606e330bfb9d3c837a58f9a4f03b44)
        ;

        
    
    
            var poly_line_9f53584d14964a65ecc99cc3ffc899cb = L.polyline(
                [[41.910569, -87.6466142], [41.9105588, -87.647132], [41.910575, -87.6471582], [41.9105991, -87.6471878], [41.9106349, -87.6472145], [41.910675, -87.6472361], [41.9107189, -87.6472522]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7407ebe0543387fa9fa8b272ecf29682 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_88c6a4c23e725fdaf183afd6bc35f697 = $(`<div id=&quot;html_88c6a4c23e725fdaf183afd6bc35f697&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387195191 → 2387195189 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230189115&quot; target=&quot;_blank&quot;>230189115</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>63.728966129106595</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_7407ebe0543387fa9fa8b272ecf29682.setContent(html_88c6a4c23e725fdaf183afd6bc35f697);
            
        

        poly_line_9f53584d14964a65ecc99cc3ffc899cb.bindPopup(popup_7407ebe0543387fa9fa8b272ecf29682)
        ;

        
    
    
            var poly_line_6b8e9cef07c20f55edf678cbb60f447f = L.polyline(
                [[41.910569, -87.6466142], [41.9105013, -87.6466112], [41.9104714, -87.6466058], [41.9104554, -87.6465977], [41.9104414, -87.6465763], [41.9104313, -87.6465413], [41.9104452, -87.6459378], [41.9104492, -87.6459029], [41.910457, -87.6458741], [41.910473, -87.6458529], [41.9105048, -87.6458369]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d49ab2155088a0996260c23729a1a18e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0c95fa9fc8c960fc1c5340a98c9ae029 = $(`<div id=&quot;html_0c95fa9fc8c960fc1c5340a98c9ae029&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387195191 → 2387195215 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230189127&quot; target=&quot;_blank&quot;>230189127</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>79.94819933025623</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_d49ab2155088a0996260c23729a1a18e.setContent(html_0c95fa9fc8c960fc1c5340a98c9ae029);
            
        

        poly_line_6b8e9cef07c20f55edf678cbb60f447f.bindPopup(popup_d49ab2155088a0996260c23729a1a18e)
        ;

        
    
    
            var poly_line_33f6d4bffed2626844b383f8c7121901 = L.polyline(
                [[41.9106648, -87.6434312], [41.9105972, -87.6434285]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_573a4190865a9512db25867d93eacb3d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_44e70318605e834a6bfcdc3937520835 = $(`<div id=&quot;html_44e70318605e834a6bfcdc3937520835&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387195193 → 2204462596 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1311091786&quot; target=&quot;_blank&quot;>1311091786</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.520107410433469</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_573a4190865a9512db25867d93eacb3d.setContent(html_44e70318605e834a6bfcdc3937520835);
            
        

        poly_line_33f6d4bffed2626844b383f8c7121901.bindPopup(popup_573a4190865a9512db25867d93eacb3d)
        ;

        
    
    
            var poly_line_a8356b81bf1a6ab33e939c538ae93826 = L.polyline(
                [[41.9106648, -87.6434312], [41.9106764, -87.6435297], [41.9106849, -87.6436015], [41.910699, -87.6436518], [41.9107327, -87.6437531], [41.9104366, -87.6439591]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_716ab8ebec87485db2fccf712c0c8c6d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b3c871ffe3ebdd362d5f0e04d1d9b244 = $(`<div id=&quot;html_b3c871ffe3ebdd362d5f0e04d1d9b244&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387195193 → 6776852110 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/722473461&quot; target=&quot;_blank&quot;>722473461</a>, <a href=&quot;https://www.openstreetmap.org/way/722473462&quot; target=&quot;_blank&quot;>722473462</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>64.97429376937026</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_716ab8ebec87485db2fccf712c0c8c6d.setContent(html_b3c871ffe3ebdd362d5f0e04d1d9b244);
            
        

        poly_line_a8356b81bf1a6ab33e939c538ae93826.bindPopup(popup_716ab8ebec87485db2fccf712c0c8c6d)
        ;

        
    
    
            var poly_line_52e66b61e5cdee1350e3aa9b8fa9fc65 = L.polyline(
                [[41.9106648, -87.6434312], [41.910914, -87.6434411], [41.9109766, -87.6434437]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_56a7d8dd8d5b091f9e9c150afa19adf6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a235e04f3b7483a3784572931d50f438 = $(`<div id=&quot;html_a235e04f3b7483a3784572931d50f438&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387195193 → 11891745315 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1311091786&quot; target=&quot;_blank&quot;>1311091786</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>34.68605854563205</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_56a7d8dd8d5b091f9e9c150afa19adf6.setContent(html_a235e04f3b7483a3784572931d50f438);
            
        

        poly_line_52e66b61e5cdee1350e3aa9b8fa9fc65.bindPopup(popup_56a7d8dd8d5b091f9e9c150afa19adf6)
        ;

        
    
    
            var poly_line_1227851775546fefd9b2e4637b59b58e = L.polyline(
                [[41.9063724, -87.6491377], [41.9063714, -87.64937]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_13bc79331d24e23a17d78c49137f3c95 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_16867b8b795db0c0487d3d09cf24264a = $(`<div id=&quot;html_16867b8b795db0c0487d3d09cf24264a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387195200 → 261260014 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/80207804&quot; target=&quot;_blank&quot;>80207804</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.22443020714411</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Evergreen Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_13bc79331d24e23a17d78c49137f3c95.setContent(html_16867b8b795db0c0487d3d09cf24264a);
            
        

        poly_line_1227851775546fefd9b2e4637b59b58e.bindPopup(popup_13bc79331d24e23a17d78c49137f3c95)
        ;

        
    
    
            var poly_line_ae8418d0981517e20c7913fec93e4030 = L.polyline(
                [[41.9063724, -87.6491377], [41.9063741, -87.6487685]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_35caddb345abd8e5833063f797659a41 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f6645ecc89eef9884ef367dbf37ecf29 = $(`<div id=&quot;html_f6645ecc89eef9884ef367dbf37ecf29&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387195200 → 2401648266 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/80207804&quot; target=&quot;_blank&quot;>80207804</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>30.553924207138298</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Evergreen Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_35caddb345abd8e5833063f797659a41.setContent(html_f6645ecc89eef9884ef367dbf37ecf29);
            
        

        poly_line_ae8418d0981517e20c7913fec93e4030.bindPopup(popup_35caddb345abd8e5833063f797659a41)
        ;

        
    
    
            var poly_line_31ee1834385586cc7f52ab005a65053c = L.polyline(
                [[41.9063724, -87.6491377], [41.9062952, -87.649108], [41.9059473, -87.6489739]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_66566a7735bb60666f4eef5bd678b87d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_240f16bc6b9d741af25d3329544c4e4e = $(`<div id=&quot;html_240f16bc6b9d741af25d3329544c4e4e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387195200 → 10660982491 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230189126&quot; target=&quot;_blank&quot;>230189126</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>49.174283650747256</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_66566a7735bb60666f4eef5bd678b87d.setContent(html_240f16bc6b9d741af25d3329544c4e4e);
            
        

        poly_line_31ee1834385586cc7f52ab005a65053c.bindPopup(popup_66566a7735bb60666f4eef5bd678b87d)
        ;

        
    
    
            var poly_line_1c50f41ba0b0ad3c9092a4bc88b29af1 = L.polyline(
                [[41.9105048, -87.6458369], [41.9105072, -87.6456535]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5be64c96d5f87f3a1bb5e30d37be037d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7d7455cf0eb2235a4bd1622a4b5cee9a = $(`<div id=&quot;html_7d7455cf0eb2235a4bd1622a4b5cee9a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387195215 → 10928830361 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1176237661&quot; target=&quot;_blank&quot;>1176237661</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>15.178726762917652</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_5be64c96d5f87f3a1bb5e30d37be037d.setContent(html_7d7455cf0eb2235a4bd1622a4b5cee9a);
            
        

        poly_line_1c50f41ba0b0ad3c9092a4bc88b29af1.bindPopup(popup_5be64c96d5f87f3a1bb5e30d37be037d)
        ;

        
    
    
            var poly_line_a5d4034c137619005a69f41dc902ca16 = L.polyline(
                [[41.9105048, -87.6458369], [41.9105395, -87.6458288], [41.9107481, -87.6458406]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_992d70c8866dcfa948add4e9a90f7c00 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2b4469f7ff7a83f9254916e230a7d39b = $(`<div id=&quot;html_2b4469f7ff7a83f9254916e230a7d39b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387195215 → 10928830359 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230189127&quot; target=&quot;_blank&quot;>230189127</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>27.132093514492926</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_992d70c8866dcfa948add4e9a90f7c00.setContent(html_2b4469f7ff7a83f9254916e230a7d39b);
            
        

        poly_line_a5d4034c137619005a69f41dc902ca16.bindPopup(popup_992d70c8866dcfa948add4e9a90f7c00)
        ;

        
    
    
            var poly_line_179a011fb7666d5f4a2372042d626efc = L.polyline(
                [[41.9105048, -87.6458369], [41.910473, -87.6458529], [41.910457, -87.6458741], [41.9104492, -87.6459029], [41.9104452, -87.6459378], [41.9104313, -87.6465413], [41.9104414, -87.6465763], [41.9104554, -87.6465977], [41.9104714, -87.6466058], [41.9105013, -87.6466112], [41.910569, -87.6466142]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3bc3076d55a2e4d3f3e61b6446b3399d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c2bbca0d3769a1a6987a18ecaf6183a7 = $(`<div id=&quot;html_c2bbca0d3769a1a6987a18ecaf6183a7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387195215 → 2387195191 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230189127&quot; target=&quot;_blank&quot;>230189127</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>79.9481993302562</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_3bc3076d55a2e4d3f3e61b6446b3399d.setContent(html_c2bbca0d3769a1a6987a18ecaf6183a7);
            
        

        poly_line_179a011fb7666d5f4a2372042d626efc.bindPopup(popup_3bc3076d55a2e4d3f3e61b6446b3399d)
        ;

        
    
    
            var poly_line_b8c3b9dc83865db898b3603b6f8bf6fe = L.polyline(
                [[41.9107323, -87.6466215], [41.9107189, -87.6472522]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4e535d5eb698762e4a44e06e74602732 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f0b6fcec031abe638f481132a50d2838 = $(`<div id=&quot;html_f0b6fcec031abe638f481132a50d2838&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387195247 → 2387195189 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230189113&quot; target=&quot;_blank&quot;>230189113</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>52.2116159408</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_4e535d5eb698762e4a44e06e74602732.setContent(html_f0b6fcec031abe638f481132a50d2838);
            
        

        poly_line_b8c3b9dc83865db898b3603b6f8bf6fe.bindPopup(popup_4e535d5eb698762e4a44e06e74602732)
        ;

        
    
    
            var poly_line_c6ffea84d80c6c74a20166590aeca72d = L.polyline(
                [[41.9107323, -87.6466215], [41.910569, -87.6466142]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_720420606ae94699a80ea7ca4c614cd5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_cc9bc23b30119479c2d1bc38c82d38a2 = $(`<div id=&quot;html_cc9bc23b30119479c2d1bc38c82d38a2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387195247 → 2387195191 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230189127&quot; target=&quot;_blank&quot;>230189127</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.16820239571528</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_720420606ae94699a80ea7ca4c614cd5.setContent(html_cc9bc23b30119479c2d1bc38c82d38a2);
            
        

        poly_line_c6ffea84d80c6c74a20166590aeca72d.bindPopup(popup_720420606ae94699a80ea7ca4c614cd5)
        ;

        
    
    
            var poly_line_0158d9b2dedd895dac0b15e98df83877 = L.polyline(
                [[41.9107323, -87.6466215], [41.9108677, -87.6466265], [41.9109496, -87.6466262]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d082f3cada35c174af709e6a9ee72936 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8a88ce2928726f769cbc3e652e7e2227 = $(`<div id=&quot;html_8a88ce2928726f769cbc3e652e7e2227&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387195247 → 12195807204 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230189114&quot; target=&quot;_blank&quot;>230189114</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>24.16840957432583</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_d082f3cada35c174af709e6a9ee72936.setContent(html_8a88ce2928726f769cbc3e652e7e2227);
            
        

        poly_line_0158d9b2dedd895dac0b15e98df83877.bindPopup(popup_d082f3cada35c174af709e6a9ee72936)
        ;

        
    
    
            var poly_line_a3790743d3673773e90ea1781493729a = L.polyline(
                [[41.9055905, -87.6497058], [41.9054629, -87.6495991]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a3575c9876f4de12501923286b82e9a3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7977489cd65fe68df9550dd36bc3b2b9 = $(`<div id=&quot;html_7977489cd65fe68df9550dd36bc3b2b9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387206222 → 2387206225 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273622070&quot; target=&quot;_blank&quot;>273622070</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>16.71180860278291</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_a3575c9876f4de12501923286b82e9a3.setContent(html_7977489cd65fe68df9550dd36bc3b2b9);
            
        

        poly_line_a3790743d3673773e90ea1781493729a.bindPopup(popup_a3575c9876f4de12501923286b82e9a3)
        ;

        
    
    
            var poly_line_5370004e49ee3224b37a1dec3714fdcf = L.polyline(
                [[41.9055905, -87.6497058], [41.9056277, -87.6496262], [41.9058924, -87.6490824], [41.9059473, -87.6489739]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0380d1759cc99bee21cb91e57a3141fa = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_08b74a51e0685f357345bd5bec6eb095 = $(`<div id=&quot;html_08b74a51e0685f357345bd5bec6eb095&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387206222 → 10660982491 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230189750&quot; target=&quot;_blank&quot;>230189750</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>72.40956751660073</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_0380d1759cc99bee21cb91e57a3141fa.setContent(html_08b74a51e0685f357345bd5bec6eb095);
            
        

        poly_line_5370004e49ee3224b37a1dec3714fdcf.bindPopup(popup_0380d1759cc99bee21cb91e57a3141fa)
        ;

        
    
    
            var poly_line_9c6a0fd6bbd87838fa7e620b8ff93e32 = L.polyline(
                [[41.9055905, -87.6497058], [41.9059506, -87.6500069], [41.9059724, -87.6500252], [41.9060398, -87.6500814]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f9095e1a05063b08ae5a553eedcad62e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9c5ef3581cc3d8cfdcd4cda12fa07618 = $(`<div id=&quot;html_9c5ef3581cc3d8cfdcd4cda12fa07618&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387206222 → 261230957 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273622070&quot; target=&quot;_blank&quot;>273622070</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>58.840175322024656</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_f9095e1a05063b08ae5a553eedcad62e.setContent(html_9c5ef3581cc3d8cfdcd4cda12fa07618);
            
        

        poly_line_9c6a0fd6bbd87838fa7e620b8ff93e32.bindPopup(popup_f9095e1a05063b08ae5a553eedcad62e)
        ;

        
    
    
            var poly_line_c505874ae1d3ed0590f166023438333b = L.polyline(
                [[41.90566, -87.6488631], [41.9058413, -87.648933]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_eee76c679325eceee329bea8e40be0b5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_37ab97683daed6b6847f1223817776db = $(`<div id=&quot;html_37ab97683daed6b6847f1223817776db&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387206223 → 2387206226 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230189126&quot; target=&quot;_blank&quot;>230189126</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.97318811679668</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_eee76c679325eceee329bea8e40be0b5.setContent(html_37ab97683daed6b6847f1223817776db);
            
        

        poly_line_c505874ae1d3ed0590f166023438333b.bindPopup(popup_eee76c679325eceee329bea8e40be0b5)
        ;

        
    
    
            var poly_line_1857970463161276b2b913690c960bb0 = L.polyline(
                [[41.90566, -87.6488631], [41.9056655, -87.6483826], [41.9058481, -87.6483883], [41.9058413, -87.648933]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6ed502dae3aeb680253e3580a7821806 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_33f5eef12fe07cdeb6a56b75ab05a7d1 = $(`<div id=&quot;html_33f5eef12fe07cdeb6a56b75ab05a7d1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387206223 → 2387206226 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230189749&quot; target=&quot;_blank&quot;>230189749</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>105.16252373751666</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_6ed502dae3aeb680253e3580a7821806.setContent(html_33f5eef12fe07cdeb6a56b75ab05a7d1);
            
        

        poly_line_1857970463161276b2b913690c960bb0.bindPopup(popup_6ed502dae3aeb680253e3580a7821806)
        ;

        
    
    
            var poly_line_b7d5407e7b862d175b4f8c2736ddabc6 = L.polyline(
                [[41.90566, -87.6488631], [41.9054496, -87.6487821], [41.9052808, -87.648717], [41.9050987, -87.6486459], [41.9050321, -87.6486199]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8f25a3fc9248ef1cb5a77f1e573e68ec = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b737d435323d534d6ce13d3c4f4d3ac5 = $(`<div id=&quot;html_b737d435323d534d6ce13d3c4f4d3ac5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387206223 → 734237804 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230189126&quot; target=&quot;_blank&quot;>230189126</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>72.66249594346226</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_8f25a3fc9248ef1cb5a77f1e573e68ec.setContent(html_b737d435323d534d6ce13d3c4f4d3ac5);
            
        

        poly_line_b7d5407e7b862d175b4f8c2736ddabc6.bindPopup(popup_8f25a3fc9248ef1cb5a77f1e573e68ec)
        ;

        
    
    
            var poly_line_6efb43357ab2ea32c1bb5468eacd5133 = L.polyline(
                [[41.9054629, -87.6495991], [41.9053306, -87.6494885]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9fbe0153f0854c4e4c9cf010035a219e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_738030ceb504c5439f17f381e4d61ee4 = $(`<div id=&quot;html_738030ceb504c5439f17f381e4d61ee4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387206225 → 2387206232 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273622070&quot; target=&quot;_blank&quot;>273622070</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>17.326059583254906</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_9fbe0153f0854c4e4c9cf010035a219e.setContent(html_738030ceb504c5439f17f381e4d61ee4);
            
        

        poly_line_6efb43357ab2ea32c1bb5468eacd5133.bindPopup(popup_9fbe0153f0854c4e4c9cf010035a219e)
        ;

        
    
    
            var poly_line_20abf0b933dfcb4b8efea46a04276a83 = L.polyline(
                [[41.9054629, -87.6495991], [41.9054986, -87.6495226], [41.9057269, -87.6490569], [41.9055537, -87.6490049], [41.9053655, -87.6494129], [41.9053306, -87.6494885]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5c39a99e112aadaaf490da54b99124cf = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a234fb1e0b35c55c7ba39ac78135cdd5 = $(`<div id=&quot;html_a234fb1e0b35c55c7ba39ac78135cdd5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387206225 → 2387206232 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230189752&quot; target=&quot;_blank&quot;>230189752</a>, <a href=&quot;https://www.openstreetmap.org/way/1145613706&quot; target=&quot;_blank&quot;>1145613706</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>120.44184056462653</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_5c39a99e112aadaaf490da54b99124cf.setContent(html_a234fb1e0b35c55c7ba39ac78135cdd5);
            
        

        poly_line_20abf0b933dfcb4b8efea46a04276a83.bindPopup(popup_5c39a99e112aadaaf490da54b99124cf)
        ;

        
    
    
            var poly_line_0a1c54c64415066d660fb5fe062c6375 = L.polyline(
                [[41.9054629, -87.6495991], [41.9055905, -87.6497058]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c74256f40de36d7bdc18b24719c6e977 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_49db08cf2345ec6b26783d6ad3bc4747 = $(`<div id=&quot;html_49db08cf2345ec6b26783d6ad3bc4747&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387206225 → 2387206222 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273622070&quot; target=&quot;_blank&quot;>273622070</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>16.71180860278291</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_c74256f40de36d7bdc18b24719c6e977.setContent(html_49db08cf2345ec6b26783d6ad3bc4747);
            
        

        poly_line_0a1c54c64415066d660fb5fe062c6375.bindPopup(popup_c74256f40de36d7bdc18b24719c6e977)
        ;

        
    
    
            var poly_line_7bec06c1f6dc0c8d503980dfc9e53f61 = L.polyline(
                [[41.9058413, -87.648933], [41.9059473, -87.6489739]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3c1bdce4a5efd769fc7d44ca65a25a92 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1b2e9bdbf79b5e61b2d263f3cd5afc29 = $(`<div id=&quot;html_1b2e9bdbf79b5e61b2d263f3cd5afc29&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387206226 → 10660982491 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230189126&quot; target=&quot;_blank&quot;>230189126</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>12.263040861521514</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_3c1bdce4a5efd769fc7d44ca65a25a92.setContent(html_1b2e9bdbf79b5e61b2d263f3cd5afc29);
            
        

        poly_line_7bec06c1f6dc0c8d503980dfc9e53f61.bindPopup(popup_3c1bdce4a5efd769fc7d44ca65a25a92)
        ;

        
    
    
            var poly_line_bb43b34ae8893ff3e0f5f0216fe140c3 = L.polyline(
                [[41.9058413, -87.648933], [41.90566, -87.6488631]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ae51cf380b8c9ef9dea3af72a66547d3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6198027a8b4d0d151db6678ec15d42b4 = $(`<div id=&quot;html_6198027a8b4d0d151db6678ec15d42b4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387206226 → 2387206223 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230189126&quot; target=&quot;_blank&quot;>230189126</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.97318811679668</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_ae51cf380b8c9ef9dea3af72a66547d3.setContent(html_6198027a8b4d0d151db6678ec15d42b4);
            
        

        poly_line_bb43b34ae8893ff3e0f5f0216fe140c3.bindPopup(popup_ae51cf380b8c9ef9dea3af72a66547d3)
        ;

        
    
    
            var poly_line_b0b3dac8f741c3aa33ca1e7b00e2011c = L.polyline(
                [[41.9058413, -87.648933], [41.9058481, -87.6483883], [41.9056655, -87.6483826], [41.90566, -87.6488631]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5be43e67fc4c0e0fd41072357ee4d293 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_29b8f965626e061a71479d49f7fed29c = $(`<div id=&quot;html_29b8f965626e061a71479d49f7fed29c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387206226 → 2387206223 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230189749&quot; target=&quot;_blank&quot;>230189749</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>105.16252373751666</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_5be43e67fc4c0e0fd41072357ee4d293.setContent(html_29b8f965626e061a71479d49f7fed29c);
            
        

        poly_line_b0b3dac8f741c3aa33ca1e7b00e2011c.bindPopup(popup_5be43e67fc4c0e0fd41072357ee4d293)
        ;

        
    
    
            var poly_line_d8765a6b99af0912748dd747445214b5 = L.polyline(
                [[41.9053306, -87.6494885], [41.9054629, -87.6495991]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6c69dd80f7d86d586311310df486ae32 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c224d18a3dbcf988ff2c7db78c57ce88 = $(`<div id=&quot;html_c224d18a3dbcf988ff2c7db78c57ce88&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387206232 → 2387206225 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273622070&quot; target=&quot;_blank&quot;>273622070</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>17.326059583254906</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_6c69dd80f7d86d586311310df486ae32.setContent(html_c224d18a3dbcf988ff2c7db78c57ce88);
            
        

        poly_line_d8765a6b99af0912748dd747445214b5.bindPopup(popup_6c69dd80f7d86d586311310df486ae32)
        ;

        
    
    
            var poly_line_81c24927d4b1a312064535a171ac6f9d = L.polyline(
                [[41.9053306, -87.6494885], [41.9053655, -87.6494129], [41.9055537, -87.6490049], [41.9057269, -87.6490569], [41.9054986, -87.6495226], [41.9054629, -87.6495991]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_044ca5c8f608e0d9af371559719a26ba = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f23f9cb4c860d7673a79c7e3d32c6490 = $(`<div id=&quot;html_f23f9cb4c860d7673a79c7e3d32c6490&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387206232 → 2387206225 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230189752&quot; target=&quot;_blank&quot;>230189752</a>, <a href=&quot;https://www.openstreetmap.org/way/1145613706&quot; target=&quot;_blank&quot;>1145613706</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>120.44184056462653</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_044ca5c8f608e0d9af371559719a26ba.setContent(html_f23f9cb4c860d7673a79c7e3d32c6490);
            
        

        poly_line_81c24927d4b1a312064535a171ac6f9d.bindPopup(popup_044ca5c8f608e0d9af371559719a26ba)
        ;

        
    
    
            var poly_line_2bc74bd9b487623fc7a494df7838c6fe = L.polyline(
                [[41.9053306, -87.6494885], [41.9051233, -87.6493164], [41.9050327, -87.6491956]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f3e13b3b938eb7c2c8271bdadba5d478 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0e823d6bb3e5e3409e1c7f7bc54a1d17 = $(`<div id=&quot;html_0e823d6bb3e5e3409e1c7f7bc54a1d17&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387206232 → 469358424 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273622070&quot; target=&quot;_blank&quot;>273622070</a>, <a href=&quot;https://www.openstreetmap.org/way/1205977031&quot; target=&quot;_blank&quot;>1205977031</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>41.288536038285834</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_f3e13b3b938eb7c2c8271bdadba5d478.setContent(html_0e823d6bb3e5e3409e1c7f7bc54a1d17);
            
        

        poly_line_2bc74bd9b487623fc7a494df7838c6fe.bindPopup(popup_f3e13b3b938eb7c2c8271bdadba5d478)
        ;

        
    
    
            var poly_line_66767c6f2149665704b3d5147491d6b6 = L.polyline(
                [[41.90903, -87.644803], [41.9081176, -87.6454588], [41.9080955, -87.6454747]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5abc0f29c88ed642664d97a02384fb07 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5e8cd13c12b25cfb9ccc6d792e1f5fde = $(`<div id=&quot;html_5e8cd13c12b25cfb9ccc6d792e1f5fde&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2387686680 → 12049414914 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230246636&quot; target=&quot;_blank&quot;>230246636</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>117.84461515657449</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Ogden Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_5abc0f29c88ed642664d97a02384fb07.setContent(html_5e8cd13c12b25cfb9ccc6d792e1f5fde);
            
        

        poly_line_66767c6f2149665704b3d5147491d6b6.bindPopup(popup_5abc0f29c88ed642664d97a02384fb07)
        ;

        
    
    
            var poly_line_b0f21ff6142348608ab91873ecc515bc = L.polyline(
                [[41.9098603, -87.6488569], [41.90986, -87.6488766]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b4d0f0db734aa86ff509b9e1da1c2482 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1633ef7a78fd686706780c4a9b54d91b = $(`<div id=&quot;html_1633ef7a78fd686706780c4a9b54d91b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2401648236 → 2504524009 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24083758&quot; target=&quot;_blank&quot;>24083758</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>1.6305360483784304</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Weed Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_b4d0f0db734aa86ff509b9e1da1c2482.setContent(html_1633ef7a78fd686706780c4a9b54d91b);
            
        

        poly_line_b0f21ff6142348608ab91873ecc515bc.bindPopup(popup_b4d0f0db734aa86ff509b9e1da1c2482)
        ;

        
    
    
            var poly_line_d11f71eb71ddfc9a6ed760820479454c = L.polyline(
                [[41.9098603, -87.6488569], [41.9098675, -87.6483611], [41.9098701, -87.6482517]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9079b47b75b8d87a3744cc3cce5a7366 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_597fb1ba4cf3d66d8e323b328cc74632 = $(`<div id=&quot;html_597fb1ba4cf3d66d8e323b328cc74632&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2401648236 → 265642209 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24083758&quot; target=&quot;_blank&quot;>24083758</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>50.09332973537937</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Weed Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_9079b47b75b8d87a3744cc3cce5a7366.setContent(html_597fb1ba4cf3d66d8e323b328cc74632);
            
        

        poly_line_d11f71eb71ddfc9a6ed760820479454c.bindPopup(popup_9079b47b75b8d87a3744cc3cce5a7366)
        ;

        
    
    
            var poly_line_03a65366ca00621f96da3f8cc47c28e0 = L.polyline(
                [[41.9098603, -87.6488569], [41.9097961, -87.6488552], [41.9089388, -87.648832]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2142b3387b5d00bcada4d124d3c43113 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1873c4d8cff0369bb90c098d80e11eea = $(`<div id=&quot;html_1873c4d8cff0369bb90c098d80e11eea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2401648236 → 10941231095 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/231835393&quot; target=&quot;_blank&quot;>231835393</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>102.48698583532546</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_2142b3387b5d00bcada4d124d3c43113.setContent(html_1873c4d8cff0369bb90c098d80e11eea);
            
        

        poly_line_03a65366ca00621f96da3f8cc47c28e0.bindPopup(popup_2142b3387b5d00bcada4d124d3c43113)
        ;

        
    
    
            var poly_line_9b794ff3cc3ae57bbf190ee9fd80c3c5 = L.polyline(
                [[41.9033899, -87.6438588], [41.9027183, -87.6438414], [41.9026494, -87.6438396], [41.9026447, -87.6441774]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e67cebcca23a8f6dee9915be99e120e7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2d207280bf38cf4f8df202ce296b6615 = $(`<div id=&quot;html_2d207280bf38cf4f8df202ce296b6615&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2401648259 → 3408107720 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/31007579&quot; target=&quot;_blank&quot;>31007579</a>, <a href=&quot;https://www.openstreetmap.org/way/24086653&quot; target=&quot;_blank&quot;>24086653</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>['residential', 'service']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>110.31662224152305</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Elm Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_e67cebcca23a8f6dee9915be99e120e7.setContent(html_2d207280bf38cf4f8df202ce296b6615);
            
        

        poly_line_9b794ff3cc3ae57bbf190ee9fd80c3c5.bindPopup(popup_e67cebcca23a8f6dee9915be99e120e7)
        ;

        
    
    
            var poly_line_735ee1b40003df85a810c0c938f14154 = L.polyline(
                [[41.9063741, -87.6487685], [41.9063724, -87.6491377]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5da54a4587ad21989861937a0eb3e841 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5aae41ff20acd8a9f33d2b03f55a63c6 = $(`<div id=&quot;html_5aae41ff20acd8a9f33d2b03f55a63c6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2401648266 → 2387195200 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/80207804&quot; target=&quot;_blank&quot;>80207804</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>30.553924207138298</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Evergreen Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_5da54a4587ad21989861937a0eb3e841.setContent(html_5aae41ff20acd8a9f33d2b03f55a63c6);
            
        

        poly_line_735ee1b40003df85a810c0c938f14154.bindPopup(popup_5da54a4587ad21989861937a0eb3e841)
        ;

        
    
    
            var poly_line_10a7054742a00ad3b0c0f750d74c45e8 = L.polyline(
                [[41.9063741, -87.6487685], [41.9063787, -87.6482661], [41.9063797, -87.6481566]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_64b6bb4f2b27f781a850f6bb0f945921 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_bf934fea20566867d35cfa5bd9b4818d = $(`<div id=&quot;html_bf934fea20566867d35cfa5bd9b4818d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2401648266 → 264431935 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/80207804&quot; target=&quot;_blank&quot;>80207804</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>50.641930680320954</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Evergreen Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_64b6bb4f2b27f781a850f6bb0f945921.setContent(html_bf934fea20566867d35cfa5bd9b4818d);
            
        

        poly_line_10a7054742a00ad3b0c0f750d74c45e8.bindPopup(popup_64b6bb4f2b27f781a850f6bb0f945921)
        ;

        
    
    
            var poly_line_82623c9f8b8ca30814f6a5b2c29d8a8e = L.polyline(
                [[41.9063741, -87.6487685], [41.9064562, -87.6487703], [41.9073952, -87.6487912], [41.9074601, -87.6487926]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8f5565037cf1c991fd8e807a731b7af6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8f5d2af5500d2d31edb9fbb2a584387a = $(`<div id=&quot;html_8f5d2af5500d2d31edb9fbb2a584387a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2401648266 → 2401648294 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/231835390&quot; target=&quot;_blank&quot;>231835390</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>120.77433018115254</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_8f5565037cf1c991fd8e807a731b7af6.setContent(html_8f5d2af5500d2d31edb9fbb2a584387a);
            
        

        poly_line_82623c9f8b8ca30814f6a5b2c29d8a8e.bindPopup(popup_8f5565037cf1c991fd8e807a731b7af6)
        ;

        
    
    
            var poly_line_3d69c70f92f67cb924ec79732c3eb644 = L.polyline(
                [[41.9057397, -87.6506646], [41.9058064, -87.6506054], [41.9059899, -87.6502025], [41.9060037, -87.6501723], [41.9060398, -87.6500814]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_bf3ee49de70925234861419b6c9304f5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2cee1c48853fd0092be608a1664cb795 = $(`<div id=&quot;html_2cee1c48853fd0092be608a1664cb795&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2401648276 → 261230957 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1077476850&quot; target=&quot;_blank&quot;>1077476850</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>59.43830531341821</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Evergreen Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_bf3ee49de70925234861419b6c9304f5.setContent(html_2cee1c48853fd0092be608a1664cb795);
            
        

        poly_line_3d69c70f92f67cb924ec79732c3eb644.bindPopup(popup_bf3ee49de70925234861419b6c9304f5)
        ;

        
    
    
            var poly_line_401bcf79bec8f1aff925727ee44aab71 = L.polyline(
                [[41.9103879, -87.6494891], [41.9102102, -87.6494854]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5e689e60380862a82112cdd1dce15698 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_cf6c16b7dea1432eb2c9abd23ccd697a = $(`<div id=&quot;html_cf6c16b7dea1432eb2c9abd23ccd697a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2401648279 → 2401648301 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/240891836&quot; target=&quot;_blank&quot;>240891836</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.761738379643226</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Dayton Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_5e689e60380862a82112cdd1dce15698.setContent(html_cf6c16b7dea1432eb2c9abd23ccd697a);
            
        

        poly_line_401bcf79bec8f1aff925727ee44aab71.bindPopup(popup_5e689e60380862a82112cdd1dce15698)
        ;

        
    
    
            var poly_line_8ed25196c031f80e67a2092bd61f4c0b = L.polyline(
                [[41.9103879, -87.6494891], [41.9103864, -87.649575], [41.9103629, -87.6509969], [41.9103612, -87.651103]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d29be5bc7005d6ccb36130c6cded6f38 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2bf2e59880d6e90f394e305f6419d838 = $(`<div id=&quot;html_2bf2e59880d6e90f394e305f6419d838&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2401648279 → 2401648293 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/231835387&quot; target=&quot;_blank&quot;>231835387</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>133.58377300378336</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_d29be5bc7005d6ccb36130c6cded6f38.setContent(html_2bf2e59880d6e90f394e305f6419d838);
            
        

        poly_line_8ed25196c031f80e67a2092bd61f4c0b.bindPopup(popup_d29be5bc7005d6ccb36130c6cded6f38)
        ;

        
    
    
            var poly_line_3b7cad3095796dbed6f9031038ff23f2 = L.polyline(
                [[41.9103612, -87.651103], [41.9102411, -87.6510991]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_296563236df195d07e0d03fc8f2ce869 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_92d2593a18db9bc48e97bbeb6e8c81f9 = $(`<div id=&quot;html_92d2593a18db9bc48e97bbeb6e8c81f9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2401648293 → 5493322751 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24111763&quot; target=&quot;_blank&quot;>24111763</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>13.358428505729847</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Fremont Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_296563236df195d07e0d03fc8f2ce869.setContent(html_92d2593a18db9bc48e97bbeb6e8c81f9);
            
        

        poly_line_3b7cad3095796dbed6f9031038ff23f2.bindPopup(popup_296563236df195d07e0d03fc8f2ce869)
        ;

        
    
    
            var poly_line_8baa64b9a91bd7bc2318f8375b4587f1 = L.polyline(
                [[41.9103612, -87.651103], [41.9107893, -87.651117], [41.9108786, -87.6511199]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_51a91c2bce8f9a73a03eca042652a901 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f7125167a6f0c01be178275e6f89086c = $(`<div id=&quot;html_f7125167a6f0c01be178275e6f89086c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2401648293 → 261147600 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24111763&quot; target=&quot;_blank&quot;>24111763</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>57.54933074458345</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Fremont Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_51a91c2bce8f9a73a03eca042652a901.setContent(html_f7125167a6f0c01be178275e6f89086c);
            
        

        poly_line_8baa64b9a91bd7bc2318f8375b4587f1.bindPopup(popup_51a91c2bce8f9a73a03eca042652a901)
        ;

        
    
    
            var poly_line_c5edacdf1d3e321e5179e661b92cab08 = L.polyline(
                [[41.9103612, -87.651103], [41.9103629, -87.6509969], [41.9103864, -87.649575], [41.9103879, -87.6494891]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ae3bd181b05ac4b61bc904dc6d55d72a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2b87b997b97cae7b3e4df53ac904a54f = $(`<div id=&quot;html_2b87b997b97cae7b3e4df53ac904a54f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2401648293 → 2401648279 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/231835387&quot; target=&quot;_blank&quot;>231835387</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>133.5837730037834</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_ae3bd181b05ac4b61bc904dc6d55d72a.setContent(html_2b87b997b97cae7b3e4df53ac904a54f);
            
        

        poly_line_c5edacdf1d3e321e5179e661b92cab08.bindPopup(popup_ae3bd181b05ac4b61bc904dc6d55d72a)
        ;

        
    
    
            var poly_line_a3b9f461bfa81c7d16c7a6e8cfa6fcb3 = L.polyline(
                [[41.9103612, -87.651103], [41.9103595, -87.6512066], [41.9103564, -87.6513915]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9cecbc4ec60cb2bae11938680c6e24db = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_cc08d7ef3355f6efb2167a8a7aa9efce = $(`<div id=&quot;html_cc08d7ef3355f6efb2167a8a7aa9efce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2401648293 → 5493322750 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/231835387&quot; target=&quot;_blank&quot;>231835387</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>23.879444373514076</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_9cecbc4ec60cb2bae11938680c6e24db.setContent(html_cc08d7ef3355f6efb2167a8a7aa9efce);
            
        

        poly_line_a3b9f461bfa81c7d16c7a6e8cfa6fcb3.bindPopup(popup_9cecbc4ec60cb2bae11938680c6e24db)
        ;

        
    
    
            var poly_line_d35274ff99648db5079cfdf85f256d09 = L.polyline(
                [[41.9074601, -87.6487926], [41.9074551, -87.6493051], [41.9074541, -87.6494137]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_53647c8e4ed225ea7117209ba8eb693f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_04a3ce7ef1f75eae3ce365c564829658 = $(`<div id=&quot;html_04a3ce7ef1f75eae3ce365c564829658&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2401648294 → 261162243 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24079428&quot; target=&quot;_blank&quot;>24079428</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>51.40291522218805</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Eastman Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_53647c8e4ed225ea7117209ba8eb693f.setContent(html_04a3ce7ef1f75eae3ce365c564829658);
            
        

        poly_line_d35274ff99648db5079cfdf85f256d09.bindPopup(popup_53647c8e4ed225ea7117209ba8eb693f)
        ;

        
    
    
            var poly_line_84f2e3d3fc0040d8f1897d1556c26265 = L.polyline(
                [[41.9074601, -87.6487926], [41.9074683, -87.6482963], [41.9074706, -87.6481841]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a2f21d1afc4d841b89305ae898f01fd7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_131363929631b7aef453b884cdc882fb = $(`<div id=&quot;html_131363929631b7aef453b884cdc882fb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2401648294 → 262368739 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24079428&quot; target=&quot;_blank&quot;>24079428</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>50.36951662500376</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Eastman Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_a2f21d1afc4d841b89305ae898f01fd7.setContent(html_131363929631b7aef453b884cdc882fb);
            
        

        poly_line_84f2e3d3fc0040d8f1897d1556c26265.bindPopup(popup_a2f21d1afc4d841b89305ae898f01fd7)
        ;

        
    
    
            var poly_line_ebe0d5696ef8559951b42d6e8a1a429f = L.polyline(
                [[41.9074601, -87.6487926], [41.9073952, -87.6487912], [41.9064562, -87.6487703], [41.9063741, -87.6487685]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e25fb2ec6f88a6570cb9392d2dfd18e3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_03adac035679ef4a8b3da3774241ebfd = $(`<div id=&quot;html_03adac035679ef4a8b3da3774241ebfd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2401648294 → 2401648266 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/231835390&quot; target=&quot;_blank&quot;>231835390</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>120.77433018115254</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_e25fb2ec6f88a6570cb9392d2dfd18e3.setContent(html_03adac035679ef4a8b3da3774241ebfd);
            
        

        poly_line_ebe0d5696ef8559951b42d6e8a1a429f.bindPopup(popup_e25fb2ec6f88a6570cb9392d2dfd18e3)
        ;

        
    
    
            var poly_line_7d69ad4b739004c96222e5dc3cafbb34 = L.polyline(
                [[41.9102102, -87.6494854], [41.9102087, -87.6493907], [41.9102073, -87.649313], [41.9099748, -87.6489911], [41.9099422, -87.6489901], [41.9098584, -87.6489871]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7b89ac093ad14c1b7f7d55b6d9cbc1cc = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1e8cb5f4e5c9cc233887f0b02f8594a5 = $(`<div id=&quot;html_1e8cb5f4e5c9cc233887f0b02f8594a5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2401648301 → 2401648345 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/231835396&quot; target=&quot;_blank&quot;>231835396</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>64.33761218491082</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_7b89ac093ad14c1b7f7d55b6d9cbc1cc.setContent(html_1e8cb5f4e5c9cc233887f0b02f8594a5);
            
        

        poly_line_7d69ad4b739004c96222e5dc3cafbb34.bindPopup(popup_7b89ac093ad14c1b7f7d55b6d9cbc1cc)
        ;

        
    
    
            var poly_line_f5648d3321bd704976a20aee92b166e3 = L.polyline(
                [[41.9102102, -87.6494854], [41.9099332, -87.6494797], [41.9098513, -87.649478]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9f5c9c8019cf48eb58d3a22a4c529539 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a7bcbbbc707161e232cbaff984be1d84 = $(`<div id=&quot;html_a7bcbbbc707161e232cbaff984be1d84&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2401648301 → 261185404 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/240891836&quot; target=&quot;_blank&quot;>240891836</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>39.91261339513178</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Dayton Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_9f5c9c8019cf48eb58d3a22a4c529539.setContent(html_a7bcbbbc707161e232cbaff984be1d84);
            
        

        poly_line_f5648d3321bd704976a20aee92b166e3.bindPopup(popup_9f5c9c8019cf48eb58d3a22a4c529539)
        ;

        
    
    
            var poly_line_c505aa9ad38866b5bd2db2ee8bf012a9 = L.polyline(
                [[41.910328, -87.6531073], [41.9105089, -87.6531121]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d020a15fca2c42cc778b4ba8afc80521 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_73c7585148fce77e2151fef8067e219f = $(`<div id=&quot;html_73c7585148fce77e2151fef8067e219f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2401648316 → 5493322756 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1281243508&quot; target=&quot;_blank&quot;>1281243508</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.119111900022336</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Sheffield Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_d020a15fca2c42cc778b4ba8afc80521.setContent(html_73c7585148fce77e2151fef8067e219f);
            
        

        poly_line_c505aa9ad38866b5bd2db2ee8bf012a9.bindPopup(popup_d020a15fca2c42cc778b4ba8afc80521)
        ;

        
    
    
            var poly_line_216a5656121692e189683e25c2de0fda = L.polyline(
                [[41.910328, -87.6531073], [41.9103299, -87.6529948], [41.9103484, -87.651878]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_08a7a45fa26c5b9667deff67b8f61e2d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c39e76a46c88af1f0ed1c59803a9911c = $(`<div id=&quot;html_c39e76a46c88af1f0ed1c59803a9911c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2401648316 → 10941231092 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/231835387&quot; target=&quot;_blank&quot;>231835387</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>101.75033644083923</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_08a7a45fa26c5b9667deff67b8f61e2d.setContent(html_c39e76a46c88af1f0ed1c59803a9911c);
            
        

        poly_line_216a5656121692e189683e25c2de0fda.bindPopup(popup_08a7a45fa26c5b9667deff67b8f61e2d)
        ;

        
    
    
            var poly_line_6ea12220b3acf234aeeb54aef8bdaff4 = L.polyline(
                [[41.910328, -87.6531073], [41.9099275, -87.6530969], [41.9098773, -87.6531116], [41.9097724, -87.653203]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fa8ddf4ff38e035e190a9e4e82c0db0f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5cac80b7ad857f7cff11315cc9782869 = $(`<div id=&quot;html_5cac80b7ad857f7cff11315cc9782869&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2401648316 → 734238174 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1281243508&quot; target=&quot;_blank&quot;>1281243508</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>64.15685631733996</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Sheffield Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_fa8ddf4ff38e035e190a9e4e82c0db0f.setContent(html_5cac80b7ad857f7cff11315cc9782869);
            
        

        poly_line_6ea12220b3acf234aeeb54aef8bdaff4.bindPopup(popup_fa8ddf4ff38e035e190a9e4e82c0db0f)
        ;

        
    
    
            var poly_line_d7dfc6c24f77a15fad5ea0df9c564809 = L.polyline(
                [[41.9085674, -87.6488221], [41.9085612, -87.6493334], [41.9085599, -87.6494436]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_14673b070587a0e557c3cf6dda3e7bfb = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_797e4a15a9cf77a57c66f66759b6bd92 = $(`<div id=&quot;html_797e4a15a9cf77a57c66f66759b6bd92&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2401648323 → 261193487 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24085262&quot; target=&quot;_blank&quot;>24085262</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>51.43755526061395</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Blackhawk Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_14673b070587a0e557c3cf6dda3e7bfb.setContent(html_797e4a15a9cf77a57c66f66759b6bd92);
            
        

        poly_line_d7dfc6c24f77a15fad5ea0df9c564809.bindPopup(popup_14673b070587a0e557c3cf6dda3e7bfb)
        ;

        
    
    
            var poly_line_3fa3a61f2587ca36c220877f4e170e16 = L.polyline(
                [[41.9085674, -87.6488221], [41.9085734, -87.6483281], [41.9085748, -87.6482146]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_64fae70e7bfe4e4f2517de9132948f99 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3f439ea7b150a6132d8452e99fb097c9 = $(`<div id=&quot;html_3f439ea7b150a6132d8452e99fb097c9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2401648323 → 265642220 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24085262&quot; target=&quot;_blank&quot;>24085262</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>50.27898389874745</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Blackhawk Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_64fae70e7bfe4e4f2517de9132948f99.setContent(html_3f439ea7b150a6132d8452e99fb097c9);
            
        

        poly_line_3fa3a61f2587ca36c220877f4e170e16.bindPopup(popup_64fae70e7bfe4e4f2517de9132948f99)
        ;

        
    
    
            var poly_line_48d9892896a8295460360213e294f1d8 = L.polyline(
                [[41.9085674, -87.6488221], [41.9086281, -87.6488236], [41.9089388, -87.648832]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_01257d426e6d5d3a9766897dc0858486 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_cefe09e01821dfc527d46e505db728dd = $(`<div id=&quot;html_cefe09e01821dfc527d46e505db728dd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2401648323 → 10941231095 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/231835393&quot; target=&quot;_blank&quot;>231835393</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>41.305987692407236</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_01257d426e6d5d3a9766897dc0858486.setContent(html_cefe09e01821dfc527d46e505db728dd);
            
        

        poly_line_48d9892896a8295460360213e294f1d8.bindPopup(popup_01257d426e6d5d3a9766897dc0858486)
        ;

        
    
    
            var poly_line_29eebee12a36979fd8a5413e0c1465d8 = L.polyline(
                [[41.9098584, -87.6489871], [41.90986, -87.6488766]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_023456414379bc3302fb7f92589e0c25 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_06fe204126ffd2acd1f7cc9bb7754585 = $(`<div id=&quot;html_06fe204126ffd2acd1f7cc9bb7754585&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2401648345 → 2504524009 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24083758&quot; target=&quot;_blank&quot;>24083758</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>9.145716706034648</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Weed Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_023456414379bc3302fb7f92589e0c25.setContent(html_06fe204126ffd2acd1f7cc9bb7754585);
            
        

        poly_line_29eebee12a36979fd8a5413e0c1465d8.bindPopup(popup_023456414379bc3302fb7f92589e0c25)
        ;

        
    
    
            var poly_line_76a4c61782b923b70b196af8d9b08ddb = L.polyline(
                [[41.9098584, -87.6489871], [41.9098527, -87.6493779], [41.9098513, -87.649478]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fb75e7a96c795b9a2fd35b01d1c18797 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e7ecc65e218ae7e6ddbb1e7c2cb309e7 = $(`<div id=&quot;html_e7ecc65e218ae7e6ddbb1e7c2cb309e7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2401648345 → 261185404 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24083758&quot; target=&quot;_blank&quot;>24083758</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>40.63014434835975</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Weed Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_fb75e7a96c795b9a2fd35b01d1c18797.setContent(html_e7ecc65e218ae7e6ddbb1e7c2cb309e7);
            
        

        poly_line_76a4c61782b923b70b196af8d9b08ddb.bindPopup(popup_fb75e7a96c795b9a2fd35b01d1c18797)
        ;

        
    
    
            var poly_line_9ab529e56ae48f7e532db9bc3a1ccf17 = L.polyline(
                [[41.9098584, -87.6489871], [41.9099422, -87.6489901], [41.9099748, -87.6489911], [41.9102073, -87.649313], [41.9102087, -87.6493907], [41.9102102, -87.6494854]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f52e1227d5ba27a528de9b97b2672c0f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1fe24bfea81e043a9b3e086aee6a6792 = $(`<div id=&quot;html_1fe24bfea81e043a9b3e086aee6a6792&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2401648345 → 2401648301 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/231835396&quot; target=&quot;_blank&quot;>231835396</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>64.33761218491082</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_f52e1227d5ba27a528de9b97b2672c0f.setContent(html_1fe24bfea81e043a9b3e086aee6a6792);
            
        

        poly_line_9ab529e56ae48f7e532db9bc3a1ccf17.bindPopup(popup_f52e1227d5ba27a528de9b97b2672c0f)
        ;

        
    
    
            var poly_line_ec93e55c2d5212d6b82445b03c6ced82 = L.polyline(
                [[41.8973087, -87.6497936], [41.8972853, -87.6497983], [41.8972401, -87.6498074], [41.8968704, -87.6498019]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#42d4f4&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#42d4f4&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_62571d1b8ac488466007ae2de6257947 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_06892babadada31f516ebdbb33778847 = $(`<div id=&quot;html_06892babadada31f516ebdbb33778847&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2503413060 → 10930796655 (key 0)<br>                 <b>Component</b> 5<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/242896629&quot; target=&quot;_blank&quot;>242896629</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>48.82436546657863</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Peoria Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_62571d1b8ac488466007ae2de6257947.setContent(html_06892babadada31f516ebdbb33778847);
            
        

        poly_line_ec93e55c2d5212d6b82445b03c6ced82.bindPopup(popup_62571d1b8ac488466007ae2de6257947)
        ;

        
    
    
            var poly_line_273842aac656f1cb1810114cd12e29f3 = L.polyline(
                [[41.90986, -87.6488766], [41.9098603, -87.6488569]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_96eda252388ca25848c15f547599ad19 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_76c94cb63025a28b1d331bff23d4d81b = $(`<div id=&quot;html_76c94cb63025a28b1d331bff23d4d81b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2504524009 → 2401648236 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24083758&quot; target=&quot;_blank&quot;>24083758</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>1.6305360483784304</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Weed Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_96eda252388ca25848c15f547599ad19.setContent(html_76c94cb63025a28b1d331bff23d4d81b);
            
        

        poly_line_273842aac656f1cb1810114cd12e29f3.bindPopup(popup_96eda252388ca25848c15f547599ad19)
        ;

        
    
    
            var poly_line_287ba594153d64f02c96eef0b2a445b4 = L.polyline(
                [[41.90986, -87.6488766], [41.9098584, -87.6489871]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6f29393620449f7db84dced51b907322 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_02c3760adca4f49c757b3ddb424c5afa = $(`<div id=&quot;html_02c3760adca4f49c757b3ddb424c5afa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2504524009 → 2401648345 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24083758&quot; target=&quot;_blank&quot;>24083758</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>9.145716706034648</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Weed Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_6f29393620449f7db84dced51b907322.setContent(html_02c3760adca4f49c757b3ddb424c5afa);
            
        

        poly_line_287ba594153d64f02c96eef0b2a445b4.bindPopup(popup_6f29393620449f7db84dced51b907322)
        ;

        
    
    
            var poly_line_35cfd8aa1e97c27119dcdc0f06696c17 = L.polyline(
                [[41.90986, -87.6488766], [41.9099431, -87.6488777], [41.9099659, -87.648878], [41.9100277, -87.6488028]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_81b4ddf594ab4a5454dd7af7050655ca = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6005325e9e06c07725ef7ff3cc1d9dc6 = $(`<div id=&quot;html_6005325e9e06c07725ef7ff3cc1d9dc6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2504524009 → 2504524015 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/243012955&quot; target=&quot;_blank&quot;>243012955</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.04685850236806</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_81b4ddf594ab4a5454dd7af7050655ca.setContent(html_6005325e9e06c07725ef7ff3cc1d9dc6);
            
        

        poly_line_35cfd8aa1e97c27119dcdc0f06696c17.bindPopup(popup_81b4ddf594ab4a5454dd7af7050655ca)
        ;

        
    
    
            var poly_line_4bfebe5b7b5176904b25f47be9ecd11e = L.polyline(
                [[41.9100277, -87.6488028], [41.9101105, -87.6487021]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5906db6aa00f3f41b396f3875ce1e902 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_03b62b6fb016c69544bd1fcb5863033a = $(`<div id=&quot;html_03b62b6fb016c69544bd1fcb5863033a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2504524015 → 2504524016 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/243012955&quot; target=&quot;_blank&quot;>243012955</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>12.418005141291804</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_5906db6aa00f3f41b396f3875ce1e902.setContent(html_03b62b6fb016c69544bd1fcb5863033a);
            
        

        poly_line_4bfebe5b7b5176904b25f47be9ecd11e.bindPopup(popup_5906db6aa00f3f41b396f3875ce1e902)
        ;

        
    
    
            var poly_line_1fecdc4c3d21d17e2e8152d92119d364 = L.polyline(
                [[41.9100277, -87.6488028], [41.9100274, -87.6485927], [41.9101105, -87.6487021]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a8b31ea9fe338ad9adb21b1af621b92f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_376738c893571f0e2b95561ed20412b9 = $(`<div id=&quot;html_376738c893571f0e2b95561ed20412b9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2504524015 → 2504524016 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/243012953&quot; target=&quot;_blank&quot;>243012953</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>30.321926172712388</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_a8b31ea9fe338ad9adb21b1af621b92f.setContent(html_376738c893571f0e2b95561ed20412b9);
            
        

        poly_line_1fecdc4c3d21d17e2e8152d92119d364.bindPopup(popup_a8b31ea9fe338ad9adb21b1af621b92f)
        ;

        
    
    
            var poly_line_bf611fd8776bf1f35c9f343dd58a9d4e = L.polyline(
                [[41.9100277, -87.6488028], [41.9099659, -87.648878], [41.9099431, -87.6488777], [41.90986, -87.6488766]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_708cfb367a50220d0a82d7321bbb0de6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e2c9a42b2185a35d9433c79d17a5fed4 = $(`<div id=&quot;html_e2c9a42b2185a35d9433c79d17a5fed4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2504524015 → 2504524009 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/243012955&quot; target=&quot;_blank&quot;>243012955</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.046858502368064</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_708cfb367a50220d0a82d7321bbb0de6.setContent(html_e2c9a42b2185a35d9433c79d17a5fed4);
            
        

        poly_line_bf611fd8776bf1f35c9f343dd58a9d4e.bindPopup(popup_708cfb367a50220d0a82d7321bbb0de6)
        ;

        
    
    
            var poly_line_31d94e4fe4008a1bdd7892c9b1ae5057 = L.polyline(
                [[41.9101105, -87.6487021], [41.9100277, -87.6488028]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_26ab566923939cff14fbb9710348e3f9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e931753e7241f1e8c1f379636aa64b46 = $(`<div id=&quot;html_e931753e7241f1e8c1f379636aa64b46&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2504524016 → 2504524015 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/243012955&quot; target=&quot;_blank&quot;>243012955</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>12.418005141291804</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_26ab566923939cff14fbb9710348e3f9.setContent(html_e931753e7241f1e8c1f379636aa64b46);
            
        

        poly_line_31d94e4fe4008a1bdd7892c9b1ae5057.bindPopup(popup_26ab566923939cff14fbb9710348e3f9)
        ;

        
    
    
            var poly_line_97ff9c0431e094273860441e7e786b22 = L.polyline(
                [[41.9101105, -87.6487021], [41.9100274, -87.6485927], [41.9100277, -87.6488028]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0128d2fe55d5944c22150b8a5dd54112 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1015760e6ddcc30b0f6ab9ac933c7a4d = $(`<div id=&quot;html_1015760e6ddcc30b0f6ab9ac933c7a4d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2504524016 → 2504524015 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/243012953&quot; target=&quot;_blank&quot;>243012953</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>30.321926172712388</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_0128d2fe55d5944c22150b8a5dd54112.setContent(html_1015760e6ddcc30b0f6ab9ac933c7a4d);
            
        

        poly_line_97ff9c0431e094273860441e7e786b22.bindPopup(popup_0128d2fe55d5944c22150b8a5dd54112)
        ;

        
    
    
            var poly_line_cbd475af6d4f41a725d15cc3f8a8a930 = L.polyline(
                [[41.9101105, -87.6487021], [41.9101701, -87.6486287], [41.9102276, -87.6485579]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6d256550603ad5252da57ef62f049a16 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_28f9c079d3d9925c63b45b70e768f88e = $(`<div id=&quot;html_28f9c079d3d9925c63b45b70e768f88e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2504524016 → 2903243954 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/243012955&quot; target=&quot;_blank&quot;>243012955</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>17.66161990787943</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_6d256550603ad5252da57ef62f049a16.setContent(html_28f9c079d3d9925c63b45b70e768f88e);
            
        

        poly_line_cbd475af6d4f41a725d15cc3f8a8a930.bindPopup(popup_6d256550603ad5252da57ef62f049a16)
        ;

        
    
    
            var poly_line_5d837cf346c2980f5ca7cbb868e939be = L.polyline(
                [[41.9111141, -87.6498037], [41.9111806, -87.6497146], [41.9111897, -87.6497024], [41.9112046, -87.6496325]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_23724c94b120050336dce5de9447d92b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_448df56a2860ae2b56a10a649813ed2a = $(`<div id=&quot;html_448df56a2860ae2b56a10a649813ed2a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2504524030 → 2504524039 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/243012952&quot; target=&quot;_blank&quot;>243012952</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>17.88830853664272</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_23724c94b120050336dce5de9447d92b.setContent(html_448df56a2860ae2b56a10a649813ed2a);
            
        

        poly_line_5d837cf346c2980f5ca7cbb868e939be.bindPopup(popup_23724c94b120050336dce5de9447d92b)
        ;

        
    
    
            var poly_line_7a4d1660a140a35a3f36c1c0f825b330 = L.polyline(
                [[41.9111141, -87.6498037], [41.9109842, -87.649615], [41.9109035, -87.6495013]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ef95522046ea756bc326d163f0aea66a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2b1a24aeb497d583dad97ef2035ac419 = $(`<div id=&quot;html_2b1a24aeb497d583dad97ef2035ac419&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2504524030 → 11891975106 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/253740817&quot; target=&quot;_blank&quot;>253740817</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>5</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>34.27280986783798</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Clybourn Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_ef95522046ea756bc326d163f0aea66a.setContent(html_2b1a24aeb497d583dad97ef2035ac419);
            
        

        poly_line_7a4d1660a140a35a3f36c1c0f825b330.bindPopup(popup_ef95522046ea756bc326d163f0aea66a)
        ;

        
    
    
            var poly_line_2b269ec96ff2ad0982c1755747743875 = L.polyline(
                [[41.9111589, -87.6495269], [41.9111159, -87.649452], [41.9111281, -87.6488523], [41.9109966, -87.6488473], [41.9109152, -87.6488469]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c16d21eb00f9eb5b35743288f23179da = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a35d046e327bd10cbd7b4994194e7921 = $(`<div id=&quot;html_a35d046e327bd10cbd7b4994194e7921&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2504524035 → 11891975100 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/243012954&quot; target=&quot;_blank&quot;>243012954</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>81.15057786985196</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_c16d21eb00f9eb5b35743288f23179da.setContent(html_a35d046e327bd10cbd7b4994194e7921);
            
        

        poly_line_2b269ec96ff2ad0982c1755747743875.bindPopup(popup_c16d21eb00f9eb5b35743288f23179da)
        ;

        
    
    
            var poly_line_8cbc0fea666e3b2eac30a5a3d29a5f82 = L.polyline(
                [[41.9111589, -87.6495269], [41.911177, -87.6495241], [41.9112152, -87.6495826], [41.9112046, -87.6496325]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_71c643838d907d4e41ed0039c0c93ef5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_615947e865f3b7cde0bae54f0a657e61 = $(`<div id=&quot;html_615947e865f3b7cde0bae54f0a657e61&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2504524035 → 2504524039 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/243012956&quot; target=&quot;_blank&quot;>243012956</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>12.76024438973165</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_71c643838d907d4e41ed0039c0c93ef5.setContent(html_615947e865f3b7cde0bae54f0a657e61);
            
        

        poly_line_8cbc0fea666e3b2eac30a5a3d29a5f82.bindPopup(popup_71c643838d907d4e41ed0039c0c93ef5)
        ;

        
    
    
            var poly_line_4e5b09063eb7323dbe053f00fdc40cb6 = L.polyline(
                [[41.9112046, -87.6496325], [41.9111897, -87.6497024], [41.9111806, -87.6497146], [41.9111141, -87.6498037]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d684daa5341fd2ad4fa01448fc4dc776 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f07f9c0d8d167f1400757c88860ebe32 = $(`<div id=&quot;html_f07f9c0d8d167f1400757c88860ebe32&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2504524039 → 2504524030 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/243012952&quot; target=&quot;_blank&quot;>243012952</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>17.88830853664272</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_d684daa5341fd2ad4fa01448fc4dc776.setContent(html_f07f9c0d8d167f1400757c88860ebe32);
            
        

        poly_line_4e5b09063eb7323dbe053f00fdc40cb6.bindPopup(popup_d684daa5341fd2ad4fa01448fc4dc776)
        ;

        
    
    
            var poly_line_3ad6d9de8fb865b066e542340249f149 = L.polyline(
                [[41.9112046, -87.6496325], [41.9111568, -87.6495569], [41.9111589, -87.6495269]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_98bd53e53a8ab7d9b8f4ecc2cb21408b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_55a5f28aa0d3b88dd79ca38aa403686f = $(`<div id=&quot;html_55a5f28aa0d3b88dd79ca38aa403686f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2504524039 → 2504524035 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/243012956&quot; target=&quot;_blank&quot;>243012956</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>10.702345690037735</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_98bd53e53a8ab7d9b8f4ecc2cb21408b.setContent(html_55a5f28aa0d3b88dd79ca38aa403686f);
            
        

        poly_line_3ad6d9de8fb865b066e542340249f149.bindPopup(popup_98bd53e53a8ab7d9b8f4ecc2cb21408b)
        ;

        
    
    
            var poly_line_df11e7274a54849ad0c4cf5d884dfaa2 = L.polyline(
                [[41.9034315, -87.6618026], [41.9034275, -87.6619636]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f8da1a3d00adb59cb8816983d5cbba11 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5306c351f86da673557baa5656aab1c8 = $(`<div id=&quot;html_5306c351f86da673557baa5656aab1c8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2565051770 → 13114217112 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/145813128&quot; target=&quot;_blank&quot;>145813128</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>13.331675281450595</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_f8da1a3d00adb59cb8816983d5cbba11.setContent(html_5306c351f86da673557baa5656aab1c8);
            
        

        poly_line_df11e7274a54849ad0c4cf5d884dfaa2.bindPopup(popup_f8da1a3d00adb59cb8816983d5cbba11)
        ;

        
    
    
            var poly_line_08245dee1184a672f04ebb5fd7a05d9a = L.polyline(
                [[41.9034315, -87.6618026], [41.9034349, -87.6616693], [41.9034499, -87.6606648]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fe03d172a22b03e908d38df521464546 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a29de3c06ab923c555a57edba4d11bae = $(`<div id=&quot;html_a29de3c06ab923c555a57edba4d11bae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2565051770 → 734122955 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/145813128&quot; target=&quot;_blank&quot;>145813128</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>94.1867661518767</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_fe03d172a22b03e908d38df521464546.setContent(html_a29de3c06ab923c555a57edba4d11bae);
            
        

        poly_line_08245dee1184a672f04ebb5fd7a05d9a.bindPopup(popup_fe03d172a22b03e908d38df521464546)
        ;

        
    
    
            var poly_line_1f2ea210c3abd2bbbaae02ce92daa5ac = L.polyline(
                [[41.9034315, -87.6618026], [41.9035449, -87.661806], [41.9035673, -87.6618066], [41.903946, -87.6618179]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_05ee54f492932bd2a0ff4b2569af2273 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_081fc38a4ae613da065250efb5474845 = $(`<div id=&quot;html_081fc38a4ae613da065250efb5474845&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2565051770 → 5493211381 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/540085887&quot; target=&quot;_blank&quot;>540085887</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>57.22388759201794</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_05ee54f492932bd2a0ff4b2569af2273.setContent(html_081fc38a4ae613da065250efb5474845);
            
        

        poly_line_1f2ea210c3abd2bbbaae02ce92daa5ac.bindPopup(popup_05ee54f492932bd2a0ff4b2569af2273)
        ;

        
    
    
            var poly_line_3d7bc8007d772ac84090486c224ad823 = L.polyline(
                [[41.9040117, -87.6618198], [41.903946, -87.6618179]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_40137d39f842a62f0a884f580863ff6b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2728fd3ffe0d734d82859a791b4df5fa = $(`<div id=&quot;html_2728fd3ffe0d734d82859a791b4df5fa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2565051775 → 5493211381 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/540085887&quot; target=&quot;_blank&quot;>540085887</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.307209009125489</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_40137d39f842a62f0a884f580863ff6b.setContent(html_2728fd3ffe0d734d82859a791b4df5fa);
            
        

        poly_line_3d7bc8007d772ac84090486c224ad823.bindPopup(popup_40137d39f842a62f0a884f580863ff6b)
        ;

        
    
    
            var poly_line_00871e5f2f853ef7c582af518a374014 = L.polyline(
                [[41.9040117, -87.6618198], [41.9040119, -87.6618022], [41.9040125, -87.6616957]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_99961d942ab3f53d02cea1e9a95b5e8e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_491e666617db9b871d618015a6847211 = $(`<div id=&quot;html_491e666617db9b871d618015a6847211&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2565051775 → 9851392459 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1073983473&quot; target=&quot;_blank&quot;>1073983473</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>10.270762604666068</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_99961d942ab3f53d02cea1e9a95b5e8e.setContent(html_491e666617db9b871d618015a6847211);
            
        

        poly_line_00871e5f2f853ef7c582af518a374014.bindPopup(popup_99961d942ab3f53d02cea1e9a95b5e8e)
        ;

        
    
    
            var poly_line_c682e3ae8c9bade3b77d472e6143216c = L.polyline(
                [[41.9053784, -87.6596202], [41.9049696, -87.6595455]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_dad14afc0eb90c585cbdca2465f84784 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_db42435c9ffffad71f816cc7766f4890 = $(`<div id=&quot;html_db42435c9ffffad71f816cc7766f4890&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2565051779 → 1699464718 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/221317663&quot; target=&quot;_blank&quot;>221317663</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>3</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>45.87498785627522</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_dad14afc0eb90c585cbdca2465f84784.setContent(html_db42435c9ffffad71f816cc7766f4890);
            
        

        poly_line_c682e3ae8c9bade3b77d472e6143216c.bindPopup(popup_dad14afc0eb90c585cbdca2465f84784)
        ;

        
    
    
            var poly_line_116a682d2e15bac20400af28aa3983bd = L.polyline(
                [[41.9053784, -87.6596202], [41.9055685, -87.6596541]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_264363dda36add7df7168f6e74ff5bd0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a54d25a00c693074ff7415f644814213 = $(`<div id=&quot;html_a54d25a00c693074ff7415f644814213&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2565051779 → 7505359088 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/221317663&quot; target=&quot;_blank&quot;>221317663</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>3</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.323541978447274</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_264363dda36add7df7168f6e74ff5bd0.setContent(html_a54d25a00c693074ff7415f644814213);
            
        

        poly_line_116a682d2e15bac20400af28aa3983bd.bindPopup(popup_264363dda36add7df7168f6e74ff5bd0)
        ;

        
    
    
            var poly_line_d763e31c457ce52471bb4e2ee0721d75 = L.polyline(
                [[41.9053784, -87.6596202], [41.9053769, -87.659688]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8cb267f03b35b6d1105fb59661ec040b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_de9aca318d7c5f294739709bdee2d7b4 = $(`<div id=&quot;html_de9aca318d7c5f294739709bdee2d7b4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2565051779 → 12187279999 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/249978863&quot; target=&quot;_blank&quot;>249978863</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>5.613390552778559</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Potomac Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_8cb267f03b35b6d1105fb59661ec040b.setContent(html_de9aca318d7c5f294739709bdee2d7b4);
            
        

        poly_line_d763e31c457ce52471bb4e2ee0721d75.bindPopup(popup_8cb267f03b35b6d1105fb59661ec040b)
        ;

        
    
    
            var poly_line_472aca4993dacf2cfc14cbf3fc47a554 = L.polyline(
                [[41.9053784, -87.6596202], [41.9053835, -87.6595276]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_917d1a410f0b7843684e3f4be97d6931 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6a95aed03b1a65003c1fc304ae745b2e = $(`<div id=&quot;html_6a95aed03b1a65003c1fc304ae745b2e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2565051779 → 11967979355 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820013&quot; target=&quot;_blank&quot;>1316820013</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.684234940127807</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_917d1a410f0b7843684e3f4be97d6931.setContent(html_6a95aed03b1a65003c1fc304ae745b2e);
            
        

        poly_line_472aca4993dacf2cfc14cbf3fc47a554.bindPopup(popup_917d1a410f0b7843684e3f4be97d6931)
        ;

        
    
    
            var poly_line_951020ef90656cf686b1bacf5850baf5 = L.polyline(
                [[41.9048646, -87.6492981], [41.9049995, -87.6492762], [41.9050327, -87.6491956]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ebaa1001b8acc6eebd5645cbab2c7188 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_63e0f7239aa0efc9386ab2a97e91dc8e = $(`<div id=&quot;html_63e0f7239aa0efc9386ab2a97e91dc8e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2784579737 → 469358424 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/210314104&quot; target=&quot;_blank&quot;>210314104</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.732992841850635</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_ebaa1001b8acc6eebd5645cbab2c7188.setContent(html_63e0f7239aa0efc9386ab2a97e91dc8e);
            
        

        poly_line_951020ef90656cf686b1bacf5850baf5.bindPopup(popup_ebaa1001b8acc6eebd5645cbab2c7188)
        ;

        
    
    
            var poly_line_1b8ccce181b5afe7d9dfef8e0938c147 = L.polyline(
                [[41.9102276, -87.6485579], [41.9101701, -87.6486287], [41.9101105, -87.6487021]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_87dccd1853904624f42b2369dccb8a04 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_483d93b8655b808ce7a34210eeb3aafd = $(`<div id=&quot;html_483d93b8655b808ce7a34210eeb3aafd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2903243954 → 2504524016 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/243012955&quot; target=&quot;_blank&quot;>243012955</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>17.66161990787943</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_87dccd1853904624f42b2369dccb8a04.setContent(html_483d93b8655b808ce7a34210eeb3aafd);
            
        

        poly_line_1b8ccce181b5afe7d9dfef8e0938c147.bindPopup(popup_87dccd1853904624f42b2369dccb8a04)
        ;

        
    
    
            var poly_line_f7e8fada0275b4d4bef2c192c9707324 = L.polyline(
                [[41.9102276, -87.6485579], [41.9102744, -87.6486225], [41.910321, -87.6486868], [41.9104725, -87.6488958], [41.9105638, -87.6490218], [41.9106658, -87.6491626], [41.9107661, -87.6493012], [41.9109035, -87.6495013]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4c1aebf5f2668fc26beaea0bed7daa91 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_972e0dc80cae1afedbdca5aaa5e80232 = $(`<div id=&quot;html_972e0dc80cae1afedbdca5aaa5e80232&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2903243954 → 11891975106 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/372671692&quot; target=&quot;_blank&quot;>372671692</a>, <a href=&quot;https://www.openstreetmap.org/way/435393422&quot; target=&quot;_blank&quot;>435393422</a>, <a href=&quot;https://www.openstreetmap.org/way/435832375&quot; target=&quot;_blank&quot;>435832375</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>['5', '4']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>108.37108179234257</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Clybourn Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_4c1aebf5f2668fc26beaea0bed7daa91.setContent(html_972e0dc80cae1afedbdca5aaa5e80232);
            
        

        poly_line_f7e8fada0275b4d4bef2c192c9707324.bindPopup(popup_4c1aebf5f2668fc26beaea0bed7daa91)
        ;

        
    
    
            var poly_line_a7850f5f81cacd42f27fbc190c170588 = L.polyline(
                [[41.9102276, -87.6485579], [41.9100925, -87.6483714], [41.9100134, -87.648257]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e1f31fc35b3dc11ccd3cc3c613950c38 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7a36df56e73c86b4692b3fc48d723891 = $(`<div id=&quot;html_7a36df56e73c86b4692b3fc48d723891&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 2903243954 → 102708202 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435393422&quot; target=&quot;_blank&quot;>435393422</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>34.45926394769325</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Clybourn Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_e1f31fc35b3dc11ccd3cc3c613950c38.setContent(html_7a36df56e73c86b4692b3fc48d723891);
            
        

        poly_line_a7850f5f81cacd42f27fbc190c170588.bindPopup(popup_e1f31fc35b3dc11ccd3cc3c613950c38)
        ;

        
    
    
            var poly_line_34f3bef3c63ec9b4949f4ca9c8bf0abb = L.polyline(
                [[41.9048749, -87.6426528], [41.9050078, -87.6424557]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#f032e6&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#f032e6&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b341225d9fe94cf9e7ae61cc4599f145 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_88945a7ab402c1aa287cc20133a4dd4c = $(`<div id=&quot;html_88945a7ab402c1aa287cc20133a4dd4c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3268306946 → 3268306950 (key 0)<br>                 <b>Component</b> 6<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/320326343&quot; target=&quot;_blank&quot;>320326343</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.010191425930373</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_b341225d9fe94cf9e7ae61cc4599f145.setContent(html_88945a7ab402c1aa287cc20133a4dd4c);
            
        

        poly_line_34f3bef3c63ec9b4949f4ca9c8bf0abb.bindPopup(popup_b341225d9fe94cf9e7ae61cc4599f145)
        ;

        
    
    
            var poly_line_9bdbf4d0fae8528bb3b993c0363bc55c = L.polyline(
                [[41.9048749, -87.6426528], [41.9050994, -87.6426696]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#f032e6&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#f032e6&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_86fbe5cbac7d7e1d1e4b2bb6065d8df6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6996a28f32e96143c7a42ffced6b4c90 = $(`<div id=&quot;html_6996a28f32e96143c7a42ffced6b4c90&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3268306946 → 3268306952 (key 0)<br>                 <b>Component</b> 6<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/320326346&quot; target=&quot;_blank&quot;>320326346</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>25.001983119900405</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_86fbe5cbac7d7e1d1e4b2bb6065d8df6.setContent(html_6996a28f32e96143c7a42ffced6b4c90);
            
        

        poly_line_9bdbf4d0fae8528bb3b993c0363bc55c.bindPopup(popup_86fbe5cbac7d7e1d1e4b2bb6065d8df6)
        ;

        
    
    
            var poly_line_7dcb18e2d10c24afaf040463b4f38ffd = L.polyline(
                [[41.9048749, -87.6426528], [41.9049815, -87.6430066], [41.9050956, -87.6430082], [41.9050994, -87.6426696]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#f032e6&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#f032e6&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_898ce8572391986bee701325d2f5bcf0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_cd4e82b4c49f2c1db8c554d543549e6b = $(`<div id=&quot;html_cd4e82b4c49f2c1db8c554d543549e6b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3268306946 → 3268306952 (key 1)<br>                 <b>Component</b> 6<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/320326346&quot; target=&quot;_blank&quot;>320326346</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>72.30072570224465</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_898ce8572391986bee701325d2f5bcf0.setContent(html_cd4e82b4c49f2c1db8c554d543549e6b);
            
        

        poly_line_7dcb18e2d10c24afaf040463b4f38ffd.bindPopup(popup_898ce8572391986bee701325d2f5bcf0)
        ;

        
    
    
            var poly_line_2b237e4968b529f744bb955a66881cf8 = L.polyline(
                [[41.9050078, -87.6424557], [41.9048749, -87.6426528]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#f032e6&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#f032e6&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f29b70216697057943362486564708c5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_bfd8798c7b40331b46f243663474308d = $(`<div id=&quot;html_bfd8798c7b40331b46f243663474308d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3268306950 → 3268306946 (key 0)<br>                 <b>Component</b> 6<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/320326343&quot; target=&quot;_blank&quot;>320326343</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.010191425930373</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_f29b70216697057943362486564708c5.setContent(html_bfd8798c7b40331b46f243663474308d);
            
        

        poly_line_2b237e4968b529f744bb955a66881cf8.bindPopup(popup_f29b70216697057943362486564708c5)
        ;

        
    
    
            var poly_line_7a5792ec49fc9a3119241933bc70f4b6 = L.polyline(
                [[41.9050994, -87.6426696], [41.9048749, -87.6426528]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#f032e6&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#f032e6&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ad4f33b2e1db7f3abf03004a5dc472d2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_57ee9da0b124de361b36e0a1477c39ea = $(`<div id=&quot;html_57ee9da0b124de361b36e0a1477c39ea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3268306952 → 3268306946 (key 0)<br>                 <b>Component</b> 6<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/320326346&quot; target=&quot;_blank&quot;>320326346</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>25.001983119900405</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_ad4f33b2e1db7f3abf03004a5dc472d2.setContent(html_57ee9da0b124de361b36e0a1477c39ea);
            
        

        poly_line_7a5792ec49fc9a3119241933bc70f4b6.bindPopup(popup_ad4f33b2e1db7f3abf03004a5dc472d2)
        ;

        
    
    
            var poly_line_d3ef13caf0c22c070421956cf30f62ef = L.polyline(
                [[41.9050994, -87.6426696], [41.9050956, -87.6430082], [41.9049815, -87.6430066], [41.9048749, -87.6426528]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#f032e6&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#f032e6&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1ad86c6c59b7b9ac92ec58fb8d979ed4 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_28e7b3640180f3f2b37cf6d7333453aa = $(`<div id=&quot;html_28e7b3640180f3f2b37cf6d7333453aa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3268306952 → 3268306946 (key 1)<br>                 <b>Component</b> 6<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/320326346&quot; target=&quot;_blank&quot;>320326346</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>72.30072570224465</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_1ad86c6c59b7b9ac92ec58fb8d979ed4.setContent(html_28e7b3640180f3f2b37cf6d7333453aa);
            
        

        poly_line_d3ef13caf0c22c070421956cf30f62ef.bindPopup(popup_1ad86c6c59b7b9ac92ec58fb8d979ed4)
        ;

        
    
    
            var poly_line_36d260957a1102e852481537b9c62798 = L.polyline(
                [[41.902641, -87.6444393], [41.9026421, -87.6443644], [41.9026447, -87.6441774]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_85fa3d22acf340c3aae30298bc8b390a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f2b0b17c09a014383413abfcceba2344 = $(`<div id=&quot;html_f2b0b17c09a014383413abfcceba2344&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107712 → 3408107720 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24086653&quot; target=&quot;_blank&quot;>24086653</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.678844873094427</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Elm Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_85fa3d22acf340c3aae30298bc8b390a.setContent(html_f2b0b17c09a014383413abfcceba2344);
            
        

        poly_line_36d260957a1102e852481537b9c62798.bindPopup(popup_85fa3d22acf340c3aae30298bc8b390a)
        ;

        
    
    
            var poly_line_3bef5d30d26db98604c449e39e17b8a5 = L.polyline(
                [[41.902641, -87.6444393], [41.9027078, -87.6444423], [41.9032881, -87.6444687]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8d7cad937815f05ed96670cc35e99367 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e46a9ae726e195b725895365c1b50308 = $(`<div id=&quot;html_e46a9ae726e195b725895365c1b50308&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107712 → 344531869 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24088155&quot; target=&quot;_blank&quot;>24088155</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>71.99546601066245</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Howe Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_8d7cad937815f05ed96670cc35e99367.setContent(html_e46a9ae726e195b725895365c1b50308);
            
        

        poly_line_3bef5d30d26db98604c449e39e17b8a5.bindPopup(popup_8d7cad937815f05ed96670cc35e99367)
        ;

        
    
    
            var poly_line_66d6042f16961006f108f3669ccebfc6 = L.polyline(
                [[41.902641, -87.6444393], [41.9026393, -87.6445663], [41.9026328, -87.6450585]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_87f7b6112163ace463254405fa2edb0f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0084c9174de6e24f24c65ff58b801d3d = $(`<div id=&quot;html_0084c9174de6e24f24c65ff58b801d3d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107712 → 344780921 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/31695399&quot; target=&quot;_blank&quot;>31695399</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>51.25333061678566</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Elm Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_87f7b6112163ace463254405fa2edb0f.setContent(html_0084c9174de6e24f24c65ff58b801d3d);
            
        

        poly_line_66d6042f16961006f108f3669ccebfc6.bindPopup(popup_87f7b6112163ace463254405fa2edb0f)
        ;

        
    
    
            var poly_line_e36dcf88f725c7d458f35c0c80a1d9e4 = L.polyline(
                [[41.9014127, -87.644794], [41.9014855, -87.6448547], [41.9014977, -87.6448642], [41.9015569, -87.6449106]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a5cf11997db783e7a13388b584be11e6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e33433a7307ecd4b1a0591b40cf073c1 = $(`<div id=&quot;html_e33433a7307ecd4b1a0591b40cf073c1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107714 → 12182779423 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24080413&quot; target=&quot;_blank&quot;>24080413</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.716056774462853</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Crosby Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_a5cf11997db783e7a13388b584be11e6.setContent(html_e33433a7307ecd4b1a0591b40cf073c1);
            
        

        poly_line_e36dcf88f725c7d458f35c0c80a1d9e4.bindPopup(popup_a5cf11997db783e7a13388b584be11e6)
        ;

        
    
    
            var poly_line_3bd7948d3a11bf38a4ac7699dffeb27b = L.polyline(
                [[41.9014127, -87.644794], [41.901334, -87.6447287], [41.9013147, -87.6447126], [41.9011825, -87.6446018]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1301c4b757c34fc6be85ff60d0264c81 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4abbb6be59a9153f542ee84814359123 = $(`<div id=&quot;html_4abbb6be59a9153f542ee84814359123&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107714 → 2111444788 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24080413&quot; target=&quot;_blank&quot;>24080413</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>30.137097264922502</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Crosby Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_1301c4b757c34fc6be85ff60d0264c81.setContent(html_4abbb6be59a9153f542ee84814359123);
            
        

        poly_line_3bd7948d3a11bf38a4ac7699dffeb27b.bindPopup(popup_1301c4b757c34fc6be85ff60d0264c81)
        ;

        
    
    
            var poly_line_9b4cb79a75124717367c1d75e1cb72da = L.polyline(
                [[41.9014127, -87.644794], [41.9014487, -87.6446646], [41.9014568, -87.6446356], [41.9014593, -87.644435]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_27e88910e5f17fcca4a247f9a84a6d07 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_724459cacedebf625b92f89221706f8e = $(`<div id=&quot;html_724459cacedebf625b92f89221706f8e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107714 → 3408107715 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24118314&quot; target=&quot;_blank&quot;>24118314</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>30.600971992216728</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Hobbie Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_27e88910e5f17fcca4a247f9a84a6d07.setContent(html_724459cacedebf625b92f89221706f8e);
            
        

        poly_line_9b4cb79a75124717367c1d75e1cb72da.bindPopup(popup_27e88910e5f17fcca4a247f9a84a6d07)
        ;

        
    
    
            var poly_line_ebba9be4bbe8f47c198d29b52117529a = L.polyline(
                [[41.9014127, -87.644794], [41.9013788, -87.6448822], [41.9013679, -87.6449106], [41.90128, -87.6451029]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_94eaada0a6734016de189abf68ff38bc = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fbc7f309d501133799cf882f8cffc79e = $(`<div id=&quot;html_fbc7f309d501133799cf882f8cffc79e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107714 → 353804288 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24118314&quot; target=&quot;_blank&quot;>24118314</a>, <a href=&quot;https://www.openstreetmap.org/way/1125567607&quot; target=&quot;_blank&quot;>1125567607</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>29.53680687798473</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Hobbie Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_94eaada0a6734016de189abf68ff38bc.setContent(html_fbc7f309d501133799cf882f8cffc79e);
            
        

        poly_line_ebba9be4bbe8f47c198d29b52117529a.bindPopup(popup_94eaada0a6734016de189abf68ff38bc)
        ;

        
    
    
            var poly_line_beaaa75055674c85dc0acdfa9a050e79 = L.polyline(
                [[41.9014593, -87.644435], [41.9014622, -87.6441425]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2378240956b351d12c9aa0ffbc4c8065 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2c7ad354a4d89c05cc4dfe5ea603acfe = $(`<div id=&quot;html_2c7ad354a4d89c05cc4dfe5ea603acfe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107715 → 3408107721 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/30954124&quot; target=&quot;_blank&quot;>30954124</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>24.210000883832496</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Hobbie Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_2378240956b351d12c9aa0ffbc4c8065.setContent(html_2c7ad354a4d89c05cc4dfe5ea603acfe);
            
        

        poly_line_beaaa75055674c85dc0acdfa9a050e79.bindPopup(popup_2378240956b351d12c9aa0ffbc4c8065)
        ;

        
    
    
            var poly_line_53ba762c028de3852fd6cb61dfed8d39 = L.polyline(
                [[41.9014593, -87.644435], [41.9014568, -87.6446356], [41.9014487, -87.6446646], [41.9014127, -87.644794]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5f8c1863b56dad5f3f774ece5a9383f1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_85bc552384cc9e2b0bd87543111d8c60 = $(`<div id=&quot;html_85bc552384cc9e2b0bd87543111d8c60&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107715 → 3408107714 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24118314&quot; target=&quot;_blank&quot;>24118314</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>30.600971992216728</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Hobbie Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_5f8c1863b56dad5f3f774ece5a9383f1.setContent(html_85bc552384cc9e2b0bd87543111d8c60);
            
        

        poly_line_53ba762c028de3852fd6cb61dfed8d39.bindPopup(popup_5f8c1863b56dad5f3f774ece5a9383f1)
        ;

        
    
    
            var poly_line_8a56a21a619596b405cd4927e143bb2f = L.polyline(
                [[41.9014593, -87.644435], [41.9015334, -87.6444431], [41.9022194, -87.6444636], [41.9022112, -87.6449188], [41.9022043, -87.6452959], [41.902203, -87.6454173]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f1337f1bc8ba0628141d310dfb1e1f22 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e13f7c56bd05dff26169081c20a73840 = $(`<div id=&quot;html_e13f7c56bd05dff26169081c20a73840&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107715 → 344780925 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/519888256&quot; target=&quot;_blank&quot;>519888256</a>, <a href=&quot;https://www.openstreetmap.org/way/31007558&quot; target=&quot;_blank&quot;>31007558</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>163.5160650947996</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_f1337f1bc8ba0628141d310dfb1e1f22.setContent(html_e13f7c56bd05dff26169081c20a73840);
            
        

        poly_line_8a56a21a619596b405cd4927e143bb2f.bindPopup(popup_f1337f1bc8ba0628141d310dfb1e1f22)
        ;

        
    
    
            var poly_line_6c4df4a2f6656ed78d53ac7701a8b16b = L.polyline(
                [[41.9026198, -87.645749], [41.902693, -87.645812], [41.903252, -87.6462929]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_549e3abfa0d6ff140ff3614a4b48b0b3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_36a05fdee1e5df453be60eca3691978d = $(`<div id=&quot;html_36a05fdee1e5df453be60eca3691978d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107716 → 344531772 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24080413&quot; target=&quot;_blank&quot;>24080413</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>83.47410946489998</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Crosby Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_549e3abfa0d6ff140ff3614a4b48b0b3.setContent(html_36a05fdee1e5df453be60eca3691978d);
            
        

        poly_line_6c4df4a2f6656ed78d53ac7701a8b16b.bindPopup(popup_549e3abfa0d6ff140ff3614a4b48b0b3)
        ;

        
    
    
            var poly_line_2831fb8ad8c4f63f5327d7e3cb2f3e1c = L.polyline(
                [[41.9026198, -87.645749], [41.9025178, -87.6456678], [41.902203, -87.6454173]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_dea398a3e67667818b646ad724a959cf = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f06d66f02124f505a8d1ac39439d70f0 = $(`<div id=&quot;html_f06d66f02124f505a8d1ac39439d70f0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107716 → 344780925 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24080413&quot; target=&quot;_blank&quot;>24080413</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>53.86611580536335</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Crosby Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_dea398a3e67667818b646ad724a959cf.setContent(html_f06d66f02124f505a8d1ac39439d70f0);
            
        

        poly_line_2831fb8ad8c4f63f5327d7e3cb2f3e1c.bindPopup(popup_dea398a3e67667818b646ad724a959cf)
        ;

        
    
    
            var poly_line_ba12a15103bd16f3bd46f44f65826f6c = L.polyline(
                [[41.9026198, -87.645749], [41.9026218, -87.6456427], [41.9026222, -87.6456205], [41.9026328, -87.6450585]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e6ecb98496f05c04faaff0975b2d4e8e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2927b027c14699b2f789a963dfb7c629 = $(`<div id=&quot;html_2927b027c14699b2f789a963dfb7c629&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107716 → 344780921 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/31695399&quot; target=&quot;_blank&quot;>31695399</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>57.16432386787182</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Elm Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_e6ecb98496f05c04faaff0975b2d4e8e.setContent(html_2927b027c14699b2f789a963dfb7c629);
            
        

        poly_line_ba12a15103bd16f3bd46f44f65826f6c.bindPopup(popup_e6ecb98496f05c04faaff0975b2d4e8e)
        ;

        
    
    
            var poly_line_38ea45f24e994764dfcb0d3338b252ac = L.polyline(
                [[41.9026447, -87.6441774], [41.9026421, -87.6443644], [41.902641, -87.6444393]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_335ef412555ce0639fdc7b5c0e3ec73a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_96bcd172af925e5a5e924b9009e828b3 = $(`<div id=&quot;html_96bcd172af925e5a5e924b9009e828b3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107720 → 3408107712 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24086653&quot; target=&quot;_blank&quot;>24086653</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.678844873094427</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Elm Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_335ef412555ce0639fdc7b5c0e3ec73a.setContent(html_96bcd172af925e5a5e924b9009e828b3);
            
        

        poly_line_38ea45f24e994764dfcb0d3338b252ac.bindPopup(popup_335ef412555ce0639fdc7b5c0e3ec73a)
        ;

        
    
    
            var poly_line_620666b33f6405ff24e2228a07d2d715 = L.polyline(
                [[41.9026447, -87.6441774], [41.9026494, -87.6438396], [41.9027183, -87.6438414], [41.9033899, -87.6438588]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4a9651d70b52a5bdd80f247a9cb1e778 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c783f077f74906b77397bd73ec6b24cc = $(`<div id=&quot;html_c783f077f74906b77397bd73ec6b24cc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107720 → 2401648259 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/31007579&quot; target=&quot;_blank&quot;>31007579</a>, <a href=&quot;https://www.openstreetmap.org/way/24086653&quot; target=&quot;_blank&quot;>24086653</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>['residential', 'service']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>110.31662224152305</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Elm Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_4a9651d70b52a5bdd80f247a9cb1e778.setContent(html_c783f077f74906b77397bd73ec6b24cc);
            
        

        poly_line_620666b33f6405ff24e2228a07d2d715.bindPopup(popup_4a9651d70b52a5bdd80f247a9cb1e778)
        ;

        
    
    
            var poly_line_028cf84c608452f968c4038e076722b8 = L.polyline(
                [[41.9026447, -87.6441774], [41.9025598, -87.6441749], [41.9024449, -87.6441715]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c8cf44b878b5e268cd6eeb859e0181d5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0cd30625933e6111f4fc96008ea92c0e = $(`<div id=&quot;html_0cd30625933e6111f4fc96008ea92c0e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107720 → 3408107724 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/333720277&quot; target=&quot;_blank&quot;>333720277</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.22214296784483</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_c8cf44b878b5e268cd6eeb859e0181d5.setContent(html_0cd30625933e6111f4fc96008ea92c0e);
            
        

        poly_line_028cf84c608452f968c4038e076722b8.bindPopup(popup_c8cf44b878b5e268cd6eeb859e0181d5)
        ;

        
    
    
            var poly_line_c1cb098e2a18549c61332e828cc0cc3a = L.polyline(
                [[41.9014622, -87.6441425], [41.9014653, -87.6438399]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1bc9fd9ba859c234e93a3bbe4ca8e288 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5ea76c4aac7aea4604238b9f2142f3e3 = $(`<div id=&quot;html_5ea76c4aac7aea4604238b9f2142f3e3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107721 → 6093478457 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/30954124&quot; target=&quot;_blank&quot;>30954124</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>25.04611933374938</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Hobbie Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_1bc9fd9ba859c234e93a3bbe4ca8e288.setContent(html_5ea76c4aac7aea4604238b9f2142f3e3);
            
        

        poly_line_c1cb098e2a18549c61332e828cc0cc3a.bindPopup(popup_1bc9fd9ba859c234e93a3bbe4ca8e288)
        ;

        
    
    
            var poly_line_91231a6b7eaf23ecf796a0d5cc53d5b4 = L.polyline(
                [[41.9014622, -87.6441425], [41.9014593, -87.644435]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_902b8394d5b9463eae5e121cd72aec53 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d5a9673e909db9b100410988e5c0b43f = $(`<div id=&quot;html_d5a9673e909db9b100410988e5c0b43f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107721 → 3408107715 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/30954124&quot; target=&quot;_blank&quot;>30954124</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>24.210000883832496</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Hobbie Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_902b8394d5b9463eae5e121cd72aec53.setContent(html_d5a9673e909db9b100410988e5c0b43f);
            
        

        poly_line_91231a6b7eaf23ecf796a0d5cc53d5b4.bindPopup(popup_902b8394d5b9463eae5e121cd72aec53)
        ;

        
    
    
            var poly_line_324411acc94de49abd45118c8f87ec6e = L.polyline(
                [[41.9014622, -87.6441425], [41.9015378, -87.6441447], [41.9016405, -87.6441478]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4a20342c79aea7a72e3e5e8739ba6cea = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e9453a940b9bfcbef87368376d513275 = $(`<div id=&quot;html_e9453a940b9bfcbef87368376d513275&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107721 → 3408107722 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/333720277&quot; target=&quot;_blank&quot;>333720277</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.830936674502304</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_4a20342c79aea7a72e3e5e8739ba6cea.setContent(html_e9453a940b9bfcbef87368376d513275);
            
        

        poly_line_324411acc94de49abd45118c8f87ec6e.bindPopup(popup_4a20342c79aea7a72e3e5e8739ba6cea)
        ;

        
    
    
            var poly_line_46aa5ddff2cb1a69a085c5c044220da3 = L.polyline(
                [[41.9016405, -87.6441478], [41.9016438, -87.6439387]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d1114ac13e2e539e7789acb20ff66d33 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5fdd01da8581b758d0648b71a7d352b1 = $(`<div id=&quot;html_5fdd01da8581b758d0648b71a7d352b1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107722 → 3408107727 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/333720278&quot; target=&quot;_blank&quot;>333720278</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>17.309352222662792</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_d1114ac13e2e539e7789acb20ff66d33.setContent(html_5fdd01da8581b758d0648b71a7d352b1);
            
        

        poly_line_46aa5ddff2cb1a69a085c5c044220da3.bindPopup(popup_d1114ac13e2e539e7789acb20ff66d33)
        ;

        
    
    
            var poly_line_72139aa3ccfcbdc9e1e23429a53390c4 = L.polyline(
                [[41.9016405, -87.6441478], [41.9015378, -87.6441447], [41.9014622, -87.6441425]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9325f96e3e1f48c02caf54b543bbb3f5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b083dd5b8edd6665ef0a0c11435806de = $(`<div id=&quot;html_b083dd5b8edd6665ef0a0c11435806de&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107722 → 3408107721 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/333720277&quot; target=&quot;_blank&quot;>333720277</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.830936674502304</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_9325f96e3e1f48c02caf54b543bbb3f5.setContent(html_b083dd5b8edd6665ef0a0c11435806de);
            
        

        poly_line_72139aa3ccfcbdc9e1e23429a53390c4.bindPopup(popup_9325f96e3e1f48c02caf54b543bbb3f5)
        ;

        
    
    
            var poly_line_681a453c8afe53a3c214db7a5b09c57a = L.polyline(
                [[41.9016405, -87.6441478], [41.9020415, -87.6441596], [41.9024449, -87.6441715]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fe584b23be97dc9bf2d6a21cc48fb184 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_faa446d774b247c09989c672e7c8eb38 = $(`<div id=&quot;html_faa446d774b247c09989c672e7c8eb38&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107722 → 3408107724 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/333720277&quot; target=&quot;_blank&quot;>333720277</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>89.46682890984762</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_fe584b23be97dc9bf2d6a21cc48fb184.setContent(html_faa446d774b247c09989c672e7c8eb38);
            
        

        poly_line_681a453c8afe53a3c214db7a5b09c57a.bindPopup(popup_fe584b23be97dc9bf2d6a21cc48fb184)
        ;

        
    
    
            var poly_line_e05f8a47b6057e84ac66667be808132e = L.polyline(
                [[41.9024449, -87.6441715], [41.9024503, -87.6439655]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_16e0a8cb385b403c90ee3dede0bd4f9a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3684f1df9630cf70cc25c587d034d8e5 = $(`<div id=&quot;html_3684f1df9630cf70cc25c587d034d8e5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107724 → 3408107726 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/333720279&quot; target=&quot;_blank&quot;>333720279</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>17.05925682957654</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_16e0a8cb385b403c90ee3dede0bd4f9a.setContent(html_3684f1df9630cf70cc25c587d034d8e5);
            
        

        poly_line_e05f8a47b6057e84ac66667be808132e.bindPopup(popup_16e0a8cb385b403c90ee3dede0bd4f9a)
        ;

        
    
    
            var poly_line_b793d93428ed9280acebe3502b02954a = L.polyline(
                [[41.9024449, -87.6441715], [41.9020415, -87.6441596], [41.9016405, -87.6441478]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c2ff4e237b62b696cac760a6d8a078f5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fe343f633c45687fb673c12d6dd31664 = $(`<div id=&quot;html_fe343f633c45687fb673c12d6dd31664&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107724 → 3408107722 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/333720277&quot; target=&quot;_blank&quot;>333720277</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>89.46682890984762</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_c2ff4e237b62b696cac760a6d8a078f5.setContent(html_fe343f633c45687fb673c12d6dd31664);
            
        

        poly_line_b793d93428ed9280acebe3502b02954a.bindPopup(popup_c2ff4e237b62b696cac760a6d8a078f5)
        ;

        
    
    
            var poly_line_69879f473b26bf8133d050ecfe0ad115 = L.polyline(
                [[41.9024449, -87.6441715], [41.9025598, -87.6441749], [41.9026447, -87.6441774]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_198f4a45cf34d1196583232db40444d5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6ba62f226dea45632a3f1bfae8ef7d8d = $(`<div id=&quot;html_6ba62f226dea45632a3f1bfae8ef7d8d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107724 → 3408107720 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/333720277&quot; target=&quot;_blank&quot;>333720277</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.22214296784483</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_198f4a45cf34d1196583232db40444d5.setContent(html_6ba62f226dea45632a3f1bfae8ef7d8d);
            
        

        poly_line_69879f473b26bf8133d050ecfe0ad115.bindPopup(popup_198f4a45cf34d1196583232db40444d5)
        ;

        
    
    
            var poly_line_edcf23d6c2bdb2d3811e3d9b30d6f7e6 = L.polyline(
                [[41.9024714, -87.643168], [41.9026584, -87.6431752]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e1ef9a83e8c6e41e7d4bfe2be41f0536 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_70fdd7934ffdbcd3c9dc807d773795d6 = $(`<div id=&quot;html_70fdd7934ffdbcd3c9dc807d773795d6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107725 → 261184868 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59208011&quot; target=&quot;_blank&quot;>59208011</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.802016853578277</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_e1ef9a83e8c6e41e7d4bfe2be41f0536.setContent(html_70fdd7934ffdbcd3c9dc807d773795d6);
            
        

        poly_line_edcf23d6c2bdb2d3811e3d9b30d6f7e6.bindPopup(popup_e1ef9a83e8c6e41e7d4bfe2be41f0536)
        ;

        
    
    
            var poly_line_63508023bf1b447d91d4a676dd0ce888 = L.polyline(
                [[41.9024714, -87.643168], [41.9019119, -87.6431463]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_929826fb4ff60215939fed3e31eed2b2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_54a9a5dedca77eea138501ce8134c0ad = $(`<div id=&quot;html_54a9a5dedca77eea138501ce8134c0ad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107725 → 9969789724 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59208011&quot; target=&quot;_blank&quot;>59208011</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>62.239565120502256</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_929826fb4ff60215939fed3e31eed2b2.setContent(html_54a9a5dedca77eea138501ce8134c0ad);
            
        

        poly_line_63508023bf1b447d91d4a676dd0ce888.bindPopup(popup_929826fb4ff60215939fed3e31eed2b2)
        ;

        
    
    
            var poly_line_e66b4a1570edd96a2bd345fa68b4f59f = L.polyline(
                [[41.9024714, -87.643168], [41.9024686, -87.6432776], [41.9024649, -87.6434246]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_25cb0834de7e44708b58f7d00b90f0dd = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4e7314eaf2df1a09107b377a161924cf = $(`<div id=&quot;html_4e7314eaf2df1a09107b377a161924cf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107725 → 3408107732 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/333720279&quot; target=&quot;_blank&quot;>333720279</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.24866291190651</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_25cb0834de7e44708b58f7d00b90f0dd.setContent(html_4e7314eaf2df1a09107b377a161924cf);
            
        

        poly_line_e66b4a1570edd96a2bd345fa68b4f59f.bindPopup(popup_25cb0834de7e44708b58f7d00b90f0dd)
        ;

        
    
    
            var poly_line_965f8150e30be4fd46b85de593e38d47 = L.polyline(
                [[41.9024503, -87.6439655], [41.9024449, -87.6441715]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3cc7de2b8aa5d4f92106843a3468b5e8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d28d2568c7ea5878031c1c40fe41d84b = $(`<div id=&quot;html_d28d2568c7ea5878031c1c40fe41d84b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107726 → 3408107724 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/333720279&quot; target=&quot;_blank&quot;>333720279</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>17.05925682957654</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_3cc7de2b8aa5d4f92106843a3468b5e8.setContent(html_d28d2568c7ea5878031c1c40fe41d84b);
            
        

        poly_line_965f8150e30be4fd46b85de593e38d47.bindPopup(popup_3cc7de2b8aa5d4f92106843a3468b5e8)
        ;

        
    
    
            var poly_line_bb97189ac405a960f36e645c3ba94c5f = L.polyline(
                [[41.9024503, -87.6439655], [41.9024547, -87.6438], [41.9024587, -87.6436492]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d4de74c2fb19a12df24e4b8db8fce970 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0f10621a4928a1e2163d9f635f84089e = $(`<div id=&quot;html_0f10621a4928a1e2163d9f635f84089e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107726 → 3408107728 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/333720279&quot; target=&quot;_blank&quot;>333720279</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>26.193837486821547</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_d4de74c2fb19a12df24e4b8db8fce970.setContent(html_0f10621a4928a1e2163d9f635f84089e);
            
        

        poly_line_bb97189ac405a960f36e645c3ba94c5f.bindPopup(popup_d4de74c2fb19a12df24e4b8db8fce970)
        ;

        
    
    
            var poly_line_b72ac0a27bd33ce678a5bbb10ae90e05 = L.polyline(
                [[41.9024503, -87.6439655], [41.9020448, -87.643952], [41.9016438, -87.6439387]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ec852cad17a0ef23c9269db6511293c0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_057eac2d3b17cf01a892014716bc8e82 = $(`<div id=&quot;html_057eac2d3b17cf01a892014716bc8e82&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107726 → 3408107727 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/333720280&quot; target=&quot;_blank&quot;>333720280</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>89.70625945260818</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_ec852cad17a0ef23c9269db6511293c0.setContent(html_057eac2d3b17cf01a892014716bc8e82);
            
        

        poly_line_b72ac0a27bd33ce678a5bbb10ae90e05.bindPopup(popup_ec852cad17a0ef23c9269db6511293c0)
        ;

        
    
    
            var poly_line_d654c33377eab8f8dffd3dc328b94315 = L.polyline(
                [[41.9016438, -87.6439387], [41.9016405, -87.6441478]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_49ead39a344b4fb0253ff6c045fc3fd0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4c825c71ddbb27920d3b5776520164c4 = $(`<div id=&quot;html_4c825c71ddbb27920d3b5776520164c4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107727 → 3408107722 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/333720278&quot; target=&quot;_blank&quot;>333720278</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>17.309352222662792</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_49ead39a344b4fb0253ff6c045fc3fd0.setContent(html_4c825c71ddbb27920d3b5776520164c4);
            
        

        poly_line_d654c33377eab8f8dffd3dc328b94315.bindPopup(popup_49ead39a344b4fb0253ff6c045fc3fd0)
        ;

        
    
    
            var poly_line_f2d4bcbaa439e1fbe4ef4a728cb8d8ca = L.polyline(
                [[41.9016438, -87.6439387], [41.9016465, -87.6437701], [41.901649, -87.6436142]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_bfde1e7c526b769c87ee494f2b6117ad = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b4ada1440fb2792a4d318d76b8311811 = $(`<div id=&quot;html_b4ada1440fb2792a4d318d76b8311811&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107727 → 3408107729 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/333720278&quot; target=&quot;_blank&quot;>333720278</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>26.86237946193723</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_bfde1e7c526b769c87ee494f2b6117ad.setContent(html_b4ada1440fb2792a4d318d76b8311811);
            
        

        poly_line_f2d4bcbaa439e1fbe4ef4a728cb8d8ca.bindPopup(popup_bfde1e7c526b769c87ee494f2b6117ad)
        ;

        
    
    
            var poly_line_20b07ab302b1be361a5f3b432849c959 = L.polyline(
                [[41.9016438, -87.6439387], [41.9020448, -87.643952], [41.9024503, -87.6439655]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_37337fbd903e1ae05da285e055b3bfbc = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_821979f518b0985c0f74125d8444bfab = $(`<div id=&quot;html_821979f518b0985c0f74125d8444bfab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107727 → 3408107726 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/333720280&quot; target=&quot;_blank&quot;>333720280</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>89.70625945260818</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_37337fbd903e1ae05da285e055b3bfbc.setContent(html_821979f518b0985c0f74125d8444bfab);
            
        

        poly_line_20b07ab302b1be361a5f3b432849c959.bindPopup(popup_37337fbd903e1ae05da285e055b3bfbc)
        ;

        
    
    
            var poly_line_d43c807e25000b32b0d1bb0d7a4e9318 = L.polyline(
                [[41.9024587, -87.6436492], [41.9024649, -87.6434246]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e001594a4178cb630064171a0889844d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7afdd70a3d12d096a71f649271b184c2 = $(`<div id=&quot;html_7afdd70a3d12d096a71f649271b184c2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107728 → 3408107732 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/333720279&quot; target=&quot;_blank&quot;>333720279</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.600809725162602</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_e001594a4178cb630064171a0889844d.setContent(html_7afdd70a3d12d096a71f649271b184c2);
            
        

        poly_line_d43c807e25000b32b0d1bb0d7a4e9318.bindPopup(popup_e001594a4178cb630064171a0889844d)
        ;

        
    
    
            var poly_line_a403a04f613d8ea3cac4000e5a0ab636 = L.polyline(
                [[41.9024587, -87.6436492], [41.9026705, -87.6436598], [41.9026746, -87.6434318], [41.9024649, -87.6434246]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8692153eba79ca3956fc20fd445668a6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6df9a005685dc703d810e64f2c107b45 = $(`<div id=&quot;html_6df9a005685dc703d810e64f2c107b45&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107728 → 3408107732 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/333720282&quot; target=&quot;_blank&quot;>333720282</a>, <a href=&quot;https://www.openstreetmap.org/way/333720283&quot; target=&quot;_blank&quot;>333720283</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>65.76753304363014</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_8692153eba79ca3956fc20fd445668a6.setContent(html_6df9a005685dc703d810e64f2c107b45);
            
        

        poly_line_a403a04f613d8ea3cac4000e5a0ab636.bindPopup(popup_8692153eba79ca3956fc20fd445668a6)
        ;

        
    
    
            var poly_line_fc17d59cfb941ee99ef6de7c21428479 = L.polyline(
                [[41.9024587, -87.6436492], [41.9024547, -87.6438], [41.9024503, -87.6439655]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_55299126e5618f8230d269fc70c32d9f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ac30b7fe20f7c1a7938e2b6ea966236d = $(`<div id=&quot;html_ac30b7fe20f7c1a7938e2b6ea966236d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107728 → 3408107726 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/333720279&quot; target=&quot;_blank&quot;>333720279</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>26.193837486821547</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_55299126e5618f8230d269fc70c32d9f.setContent(html_ac30b7fe20f7c1a7938e2b6ea966236d);
            
        

        poly_line_fc17d59cfb941ee99ef6de7c21428479.bindPopup(popup_55299126e5618f8230d269fc70c32d9f)
        ;

        
    
    
            var poly_line_288ec91e7e69fec9fd107e2b466dbcd5 = L.polyline(
                [[41.9024587, -87.6436492], [41.9020501, -87.6436315], [41.901649, -87.6436142]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b808a87dcc2f947c2ad630e75ebda326 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b07da0327e8ffe3edabfbf0328f6f587 = $(`<div id=&quot;html_b07da0327e8ffe3edabfbf0328f6f587&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107728 → 3408107729 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/333720281&quot; target=&quot;_blank&quot;>333720281</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>90.08124350808752</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_b808a87dcc2f947c2ad630e75ebda326.setContent(html_b07da0327e8ffe3edabfbf0328f6f587);
            
        

        poly_line_288ec91e7e69fec9fd107e2b466dbcd5.bindPopup(popup_b808a87dcc2f947c2ad630e75ebda326)
        ;

        
    
    
            var poly_line_6a36cb07b2e8e4dc6daff2169317795e = L.polyline(
                [[41.901649, -87.6436142], [41.9016524, -87.6433969], [41.9020536, -87.6434106], [41.9024649, -87.6434246]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6733fa942c55815335fe132cbf9b4bf6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7cf1535c69ade3e759607d0685b12da9 = $(`<div id=&quot;html_7cf1535c69ade3e759607d0685b12da9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107729 → 3408107732 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/333720282&quot; target=&quot;_blank&quot;>333720282</a>, <a href=&quot;https://www.openstreetmap.org/way/333720278&quot; target=&quot;_blank&quot;>333720278</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>108.36316510947508</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_6733fa942c55815335fe132cbf9b4bf6.setContent(html_7cf1535c69ade3e759607d0685b12da9);
            
        

        poly_line_6a36cb07b2e8e4dc6daff2169317795e.bindPopup(popup_6733fa942c55815335fe132cbf9b4bf6)
        ;

        
    
    
            var poly_line_c873a52ffd367d8589dd8d6e7615feb6 = L.polyline(
                [[41.901649, -87.6436142], [41.9016465, -87.6437701], [41.9016438, -87.6439387]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8b3db636ade04ecdc4ffa50828e5f972 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_81b09ee59e08fa359fbe72b5a10c01b1 = $(`<div id=&quot;html_81b09ee59e08fa359fbe72b5a10c01b1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107729 → 3408107727 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/333720278&quot; target=&quot;_blank&quot;>333720278</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>26.86237946193723</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_8b3db636ade04ecdc4ffa50828e5f972.setContent(html_81b09ee59e08fa359fbe72b5a10c01b1);
            
        

        poly_line_c873a52ffd367d8589dd8d6e7615feb6.bindPopup(popup_8b3db636ade04ecdc4ffa50828e5f972)
        ;

        
    
    
            var poly_line_06a94f780d76afb258d9a1d1ab7d0dc7 = L.polyline(
                [[41.901649, -87.6436142], [41.9020501, -87.6436315], [41.9024587, -87.6436492]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_cd502fbd9b91517e517def5ee3a9ec87 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9b5eadcf0791b65c233d9e66b37a5135 = $(`<div id=&quot;html_9b5eadcf0791b65c233d9e66b37a5135&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107729 → 3408107728 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/333720281&quot; target=&quot;_blank&quot;>333720281</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>90.08124350808752</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_cd502fbd9b91517e517def5ee3a9ec87.setContent(html_9b5eadcf0791b65c233d9e66b37a5135);
            
        

        poly_line_06a94f780d76afb258d9a1d1ab7d0dc7.bindPopup(popup_cd502fbd9b91517e517def5ee3a9ec87)
        ;

        
    
    
            var poly_line_6c638d58a5afc663bffc41e0fa595c3b = L.polyline(
                [[41.9024649, -87.6434246], [41.9024587, -87.6436492]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0635bb273a5acafd1523ad77264cbdd2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ff86773d260f658d136c106a35ae1125 = $(`<div id=&quot;html_ff86773d260f658d136c106a35ae1125&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107732 → 3408107728 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/333720279&quot; target=&quot;_blank&quot;>333720279</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.600809725162602</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_0635bb273a5acafd1523ad77264cbdd2.setContent(html_ff86773d260f658d136c106a35ae1125);
            
        

        poly_line_6c638d58a5afc663bffc41e0fa595c3b.bindPopup(popup_0635bb273a5acafd1523ad77264cbdd2)
        ;

        
    
    
            var poly_line_791b63b9b4650337ec263c0fb5ec1580 = L.polyline(
                [[41.9024649, -87.6434246], [41.9026746, -87.6434318], [41.9026705, -87.6436598], [41.9024587, -87.6436492]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7f3eb78e409aa894ac515eb78f1c944a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c9b751984dc7bf97cd8687179c4c8bbb = $(`<div id=&quot;html_c9b751984dc7bf97cd8687179c4c8bbb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107732 → 3408107728 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/333720282&quot; target=&quot;_blank&quot;>333720282</a>, <a href=&quot;https://www.openstreetmap.org/way/333720283&quot; target=&quot;_blank&quot;>333720283</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>65.76753304363014</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_7f3eb78e409aa894ac515eb78f1c944a.setContent(html_c9b751984dc7bf97cd8687179c4c8bbb);
            
        

        poly_line_791b63b9b4650337ec263c0fb5ec1580.bindPopup(popup_7f3eb78e409aa894ac515eb78f1c944a)
        ;

        
    
    
            var poly_line_ac174c2e130f2f5b3fbf0b2dd9419b89 = L.polyline(
                [[41.9024649, -87.6434246], [41.9024686, -87.6432776], [41.9024714, -87.643168]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6297f96893f26684f23d8a84fd4d4838 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5df1f6a6bde20f2fa406493b4d1ed0c7 = $(`<div id=&quot;html_5df1f6a6bde20f2fa406493b4d1ed0c7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107732 → 3408107725 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/333720279&quot; target=&quot;_blank&quot;>333720279</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.24866291190651</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_6297f96893f26684f23d8a84fd4d4838.setContent(html_5df1f6a6bde20f2fa406493b4d1ed0c7);
            
        

        poly_line_ac174c2e130f2f5b3fbf0b2dd9419b89.bindPopup(popup_6297f96893f26684f23d8a84fd4d4838)
        ;

        
    
    
            var poly_line_704f74186577b9c57417d4123e480c1b = L.polyline(
                [[41.9024649, -87.6434246], [41.9020536, -87.6434106], [41.9016524, -87.6433969], [41.901649, -87.6436142]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_64d802d034a549e544426662bdc09e64 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ceda550dea477951433da7aef77d17cd = $(`<div id=&quot;html_ceda550dea477951433da7aef77d17cd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3408107732 → 3408107729 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/333720282&quot; target=&quot;_blank&quot;>333720282</a>, <a href=&quot;https://www.openstreetmap.org/way/333720278&quot; target=&quot;_blank&quot;>333720278</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>108.36316510947508</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_64d802d034a549e544426662bdc09e64.setContent(html_ceda550dea477951433da7aef77d17cd);
            
        

        poly_line_704f74186577b9c57417d4123e480c1b.bindPopup(popup_64d802d034a549e544426662bdc09e64)
        ;

        
    
    
            var poly_line_e822ae8ffc31cbffb3f673b3bf0c10ec = L.polyline(
                [[41.9031268, -87.648062], [41.9029797, -87.6480541]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a8a4fb441ca227914eb2cba81b8af8b5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_524798c4f75f34f720b2f3750a2550fc = $(`<div id=&quot;html_524798c4f75f34f720b2f3750a2550fc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3683147341 → 4269601033 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/31798302&quot; target=&quot;_blank&quot;>31798302</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>16.36985827558784</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Halsted Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_a8a4fb441ca227914eb2cba81b8af8b5.setContent(html_524798c4f75f34f720b2f3750a2550fc);
            
        

        poly_line_e822ae8ffc31cbffb3f673b3bf0c10ec.bindPopup(popup_a8a4fb441ca227914eb2cba81b8af8b5)
        ;

        
    
    
            var poly_line_a30019661ed154d4b462e191a59b0864 = L.polyline(
                [[41.9031268, -87.648062], [41.9032255, -87.6480672], [41.903266, -87.6480693]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8a9aa8c7035ea9dfa3a974a930b4a091 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5f2eae54e226a4cbf0ed066ab851689b = $(`<div id=&quot;html_5f2eae54e226a4cbf0ed066ab851689b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3683147341 → 9987432801 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1125011489&quot; target=&quot;_blank&quot;>1125011489</a>, <a href=&quot;https://www.openstreetmap.org/way/435397261&quot; target=&quot;_blank&quot;>435397261</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>['5', '4']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>15.490142167906793</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Halsted Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_8a9aa8c7035ea9dfa3a974a930b4a091.setContent(html_5f2eae54e226a4cbf0ed066ab851689b);
            
        

        poly_line_a30019661ed154d4b462e191a59b0864.bindPopup(popup_8a9aa8c7035ea9dfa3a974a930b4a091)
        ;

        
    
    
            var poly_line_6da378e10971768363417edf810fb058 = L.polyline(
                [[41.9031268, -87.648062], [41.903126, -87.6481717], [41.9031247, -87.6483527]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_89e995c51e05b6619939e188adf3c09c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_441bbbfd3b29cc8d422f724a2918ebf1 = $(`<div id=&quot;html_441bbbfd3b29cc8d422f724a2918ebf1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3683147341 → 12193659506 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316290209&quot; target=&quot;_blank&quot;>1316290209</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>24.059387750140324</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_89e995c51e05b6619939e188adf3c09c.setContent(html_441bbbfd3b29cc8d422f724a2918ebf1);
            
        

        poly_line_6da378e10971768363417edf810fb058.bindPopup(popup_89e995c51e05b6619939e188adf3c09c)
        ;

        
    
    
            var poly_line_bb5c1474c6d8a875eb113ab661c6ecd9 = L.polyline(
                [[41.8996348, -87.643263], [41.9001493, -87.6437219], [41.9001659, -87.6437368], [41.9001843, -87.6437533], [41.9002316, -87.6437931]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_264cc851cece95391887905bf5cbaf78 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c20f3bcd7574dd061e3adef11247c216 = $(`<div id=&quot;html_c20f3bcd7574dd061e3adef11247c216&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3734093936 → 261167714 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24080413&quot; target=&quot;_blank&quot;>24080413</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>79.5549566135078</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Crosby Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_264cc851cece95391887905bf5cbaf78.setContent(html_c20f3bcd7574dd061e3adef11247c216);
            
        

        poly_line_bb5c1474c6d8a875eb113ab661c6ecd9.bindPopup(popup_264cc851cece95391887905bf5cbaf78)
        ;

        
    
    
            var poly_line_fe85ca663ae3a5d9be9d4cb2dd742d10 = L.polyline(
                [[41.8999004, -87.6479232], [41.9001474, -87.6479331]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0f8c2016377e4a8a61279edf0345c35e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5a4c15b88fa165389e0b58145963cb2b = $(`<div id=&quot;html_5a4c15b88fa165389e0b58145963cb2b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3762220112 → 261916117 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/242897402&quot; target=&quot;_blank&quot;>242897402</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>27.47740484770669</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Halsted Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_0f8c2016377e4a8a61279edf0345c35e.setContent(html_5a4c15b88fa165389e0b58145963cb2b);
            
        

        poly_line_fe85ca663ae3a5d9be9d4cb2dd742d10.bindPopup(popup_0f8c2016377e4a8a61279edf0345c35e)
        ;

        
    
    
            var poly_line_50cc10a37117d406e3c3d988df49bbb9 = L.polyline(
                [[41.8999004, -87.6479232], [41.8997468, -87.6479161]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8f0cf07347681503027a00125f8ea0cd = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_852578ed04e463fa850f53bd3488580e = $(`<div id=&quot;html_852578ed04e463fa850f53bd3488580e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3762220112 → 7932870420 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/242897402&quot; target=&quot;_blank&quot;>242897402</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>17.089670515586434</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Halsted Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_8f0cf07347681503027a00125f8ea0cd.setContent(html_852578ed04e463fa850f53bd3488580e);
            
        

        poly_line_50cc10a37117d406e3c3d988df49bbb9.bindPopup(popup_8f0cf07347681503027a00125f8ea0cd)
        ;

        
    
    
            var poly_line_cbed9c1c8dc19217ca8971638ebdfb44 = L.polyline(
                [[41.8999004, -87.6479232], [41.8999049, -87.6478122], [41.8999061, -87.64779]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b0d56c6e13db2eb6604fa2371eec858d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_55a5b31c123a485563167690245761c0 = $(`<div id=&quot;html_55a5b31c123a485563167690245761c0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3762220112 → 12182920935 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316242983&quot; target=&quot;_blank&quot;>1316242983</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>11.042608621188315</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_b0d56c6e13db2eb6604fa2371eec858d.setContent(html_55a5b31c123a485563167690245761c0);
            
        

        poly_line_cbed9c1c8dc19217ca8971638ebdfb44.bindPopup(popup_b0d56c6e13db2eb6604fa2371eec858d)
        ;

        
    
    
            var poly_line_dd8df32f32839c9d4e33d22dea08dd12 = L.polyline(
                [[41.9015146, -87.6482091], [41.9012069, -87.6488621], [41.9011584, -87.648965]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c4d6b4d7b47eda39ced3172103afe52a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2206b3a70c25617ad59187f15095b24a = $(`<div id=&quot;html_2206b3a70c25617ad59187f15095b24a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3762220113 → 261126254 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24072656&quot; target=&quot;_blank&quot;>24072656</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>74.04391963547211</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Haines Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_c4d6b4d7b47eda39ced3172103afe52a.setContent(html_2206b3a70c25617ad59187f15095b24a);
            
        

        poly_line_dd8df32f32839c9d4e33d22dea08dd12.bindPopup(popup_c4d6b4d7b47eda39ced3172103afe52a)
        ;

        
    
    
            var poly_line_a375b02f60f1bdf0309efed0fa14384a = L.polyline(
                [[41.9071692, -87.6554461], [41.9071569, -87.6554457]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9dce4326a975afa51cf524eea4e826f8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_13edf253aea1c790db6b50c360966fd5 = $(`<div id=&quot;html_13edf253aea1c790db6b50c360966fd5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3762220118 → 12107616297 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/372671695&quot; target=&quot;_blank&quot;>372671695</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>1.3681000452777121</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Cherry Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_9dce4326a975afa51cf524eea4e826f8.setContent(html_13edf253aea1c790db6b50c360966fd5);
            
        

        poly_line_a375b02f60f1bdf0309efed0fa14384a.bindPopup(popup_9dce4326a975afa51cf524eea4e826f8)
        ;

        
    
    
            var poly_line_1a46ece89b6cc4be3383e396f65ee3d7 = L.polyline(
                [[41.9071692, -87.6554461], [41.907165, -87.6555402], [41.9071638, -87.6555843], [41.9071476, -87.6564734], [41.9071475, -87.6564787], [41.9071461, -87.6565377]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_160ecbee9f4785d3677cc2ec36ab9ffe = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fa50f00da8c493578b0c4597b3dd2fe5 = $(`<div id=&quot;html_fa50f00da8c493578b0c4597b3dd2fe5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3762220118 → 600507966 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24085261&quot; target=&quot;_blank&quot;>24085261</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>90.37592158244551</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Blackhawk Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_160ecbee9f4785d3677cc2ec36ab9ffe.setContent(html_fa50f00da8c493578b0c4597b3dd2fe5);
            
        

        poly_line_1a46ece89b6cc4be3383e396f65ee3d7.bindPopup(popup_160ecbee9f4785d3677cc2ec36ab9ffe)
        ;

        
    
    
            var poly_line_128f352e2e62a7e79b966ccba44d0b42 = L.polyline(
                [[41.9071692, -87.6554461], [41.9073038, -87.6554489], [41.9075117, -87.6554531], [41.9075713, -87.6554544], [41.9076158, -87.6554553]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3a86e5652226c72474e34c2de319d12d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e6b68a819ab7171133e6e5af16289892 = $(`<div id=&quot;html_e6b68a819ab7171133e6e5af16289892&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 3762220118 → 5493314397 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/372671695&quot; target=&quot;_blank&quot;>372671695</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>49.66556420317087</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Cherry Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_3a86e5652226c72474e34c2de319d12d.setContent(html_e6b68a819ab7171133e6e5af16289892);
            
        

        poly_line_128f352e2e62a7e79b966ccba44d0b42.bindPopup(popup_3a86e5652226c72474e34c2de319d12d)
        ;

        
    
    
            var poly_line_f0d75ed2a72be328af7ed930f4ba7da4 = L.polyline(
                [[41.8973127, -87.6562378], [41.8973221, -87.655769]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4183f66e93217e88bc36592c67aa7584 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fa1d6f2115fbe590e5e01eaa5cd47f4f = $(`<div id=&quot;html_fa1d6f2115fbe590e5e01eaa5cd47f4f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4035706295 → 10885523395 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24070830&quot; target=&quot;_blank&quot;>24070830</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>38.81536793652473</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Fry Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_4183f66e93217e88bc36592c67aa7584.setContent(html_fa1d6f2115fbe590e5e01eaa5cd47f4f);
            
        

        poly_line_f0d75ed2a72be328af7ed930f4ba7da4.bindPopup(popup_4183f66e93217e88bc36592c67aa7584)
        ;

        
    
    
            var poly_line_d1cdddc3fd166d4a53580cb024c3a8e2 = L.polyline(
                [[41.8973127, -87.6562378], [41.8973085, -87.6564495], [41.897307, -87.6565669]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e59b26d1213986b4fd01cd83d0b081e3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_bdba7c1ac723287e0f42db8dc114d761 = $(`<div id=&quot;html_bdba7c1ac723287e0f42db8dc114d761&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4035706295 → 261116829 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24070830&quot; target=&quot;_blank&quot;>24070830</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>27.24636325613684</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Fry Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_e59b26d1213986b4fd01cd83d0b081e3.setContent(html_bdba7c1ac723287e0f42db8dc114d761);
            
        

        poly_line_d1cdddc3fd166d4a53580cb024c3a8e2.bindPopup(popup_e59b26d1213986b4fd01cd83d0b081e3)
        ;

        
    
    
            var poly_line_97961fb258b856e78b6932cbe793765c = L.polyline(
                [[41.8973127, -87.6562378], [41.8972681, -87.6561731], [41.8972421, -87.6561354], [41.8971387, -87.6559855], [41.8969873, -87.6557604]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_348ea81c79193b9b9806d9734964b66a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2d2582f4e969767e2650e667b660f1b4 = $(`<div id=&quot;html_2d2582f4e969767e2650e667b660f1b4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4035706295 → 10885523393 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/401113948&quot; target=&quot;_blank&quot;>401113948</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>53.57802482547006</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_348ea81c79193b9b9806d9734964b66a.setContent(html_2d2582f4e969767e2650e667b660f1b4);
            
        

        poly_line_97961fb258b856e78b6932cbe793765c.bindPopup(popup_348ea81c79193b9b9806d9734964b66a)
        ;

        
    
    
            var poly_line_a6fa7444c4dbbeb8828c41e65d69063d = L.polyline(
                [[41.8977252, -87.6552696], [41.8980144, -87.6552783]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e2111da27746fd795dece4f62ab816e9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b69760042051029cbf2218d880440bd3 = $(`<div id=&quot;html_b69760042051029cbf2218d880440bd3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4035706300 → 4035706302 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/773798019&quot; target=&quot;_blank&quot;>773798019</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>32.16567904563861</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North May Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_e2111da27746fd795dece4f62ab816e9.setContent(html_b69760042051029cbf2218d880440bd3);
            
        

        poly_line_a6fa7444c4dbbeb8828c41e65d69063d.bindPopup(popup_e2111da27746fd795dece4f62ab816e9)
        ;

        
    
    
            var poly_line_a5bd623c01fdd160e1826550736445d8 = L.polyline(
                [[41.8977252, -87.6552696], [41.8977236, -87.6553683], [41.8977153, -87.6559208]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ac192ffaeab56a9a4aea3a8ecc0bc4a6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5530f1581008dfc593bd0e50f11ba02e = $(`<div id=&quot;html_5530f1581008dfc593bd0e50f11ba02e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4035706300 → 4035706305 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/401113949&quot; target=&quot;_blank&quot;>401113949</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>53.908950309221254</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_ac192ffaeab56a9a4aea3a8ecc0bc4a6.setContent(html_5530f1581008dfc593bd0e50f11ba02e);
            
        

        poly_line_a5bd623c01fdd160e1826550736445d8.bindPopup(popup_ac192ffaeab56a9a4aea3a8ecc0bc4a6)
        ;

        
    
    
            var poly_line_7fd6ca20b3523082bd5f92c927750a94 = L.polyline(
                [[41.8977055, -87.6565758], [41.8979974, -87.6565817]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_49937bda1784ac0aa153e6cc36da5336 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ebc86284054c7dfd398dfae77b22843f = $(`<div id=&quot;html_ebc86284054c7dfd398dfae77b22843f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4035706301 → 4035706303 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1386550109&quot; target=&quot;_blank&quot;>1386550109</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>32.461518097601406</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_49937bda1784ac0aa153e6cc36da5336.setContent(html_ebc86284054c7dfd398dfae77b22843f);
            
        

        poly_line_7fd6ca20b3523082bd5f92c927750a94.bindPopup(popup_49937bda1784ac0aa153e6cc36da5336)
        ;

        
    
    
            var poly_line_1d43a8eea612dac17b606b58bf5407b9 = L.polyline(
                [[41.8977055, -87.6565758], [41.8977067, -87.6564909], [41.8977072, -87.6564592], [41.8977153, -87.6559208]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_30fe6d4cc832c98131e4ed07c2f51b2e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c0b9d69a3b51d7d6911e5293f30002c4 = $(`<div id=&quot;html_c0b9d69a3b51d7d6911e5293f30002c4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4035706301 → 4035706305 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/401113949&quot; target=&quot;_blank&quot;>401113949</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>54.223179800099814</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_30fe6d4cc832c98131e4ed07c2f51b2e.setContent(html_c0b9d69a3b51d7d6911e5293f30002c4);
            
        

        poly_line_1d43a8eea612dac17b606b58bf5407b9.bindPopup(popup_30fe6d4cc832c98131e4ed07c2f51b2e)
        ;

        
    
    
            var poly_line_5ec3f3fbd6fe1062c43d64bca328abe0 = L.polyline(
                [[41.8977055, -87.6565758], [41.8975515, -87.6565742], [41.897307, -87.6565669]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8dc8d2281f52d87193cf604e9d9c2fdb = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b11d395496c0817d67273cb5bc6074f5 = $(`<div id=&quot;html_b11d395496c0817d67273cb5bc6074f5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4035706301 → 261116829 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435657941&quot; target=&quot;_blank&quot;>435657941</a>, <a href=&quot;https://www.openstreetmap.org/way/1386550109&quot; target=&quot;_blank&quot;>1386550109</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>3</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>44.31846586033533</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_8dc8d2281f52d87193cf604e9d9c2fdb.setContent(html_b11d395496c0817d67273cb5bc6074f5);
            
        

        poly_line_5ec3f3fbd6fe1062c43d64bca328abe0.bindPopup(popup_8dc8d2281f52d87193cf604e9d9c2fdb)
        ;

        
    
    
            var poly_line_8e12c4d1d303d02020d509ea577edad0 = L.polyline(
                [[41.8980144, -87.6552783], [41.8980131, -87.6553696], [41.8980059, -87.6559313]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4872163325fd482f35d4ec1a16448248 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9a0d1b3b15e49c997949ce59532f96d5 = $(`<div id=&quot;html_9a0d1b3b15e49c997949ce59532f96d5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4035706302 → 4035706304 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/401113950&quot; target=&quot;_blank&quot;>401113950</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>54.0547111210224</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_4872163325fd482f35d4ec1a16448248.setContent(html_9a0d1b3b15e49c997949ce59532f96d5);
            
        

        poly_line_8e12c4d1d303d02020d509ea577edad0.bindPopup(popup_4872163325fd482f35d4ec1a16448248)
        ;

        
    
    
            var poly_line_76360e6e9f4299bb597b86abcf025036 = L.polyline(
                [[41.8980144, -87.6552783], [41.8983271, -87.6552878], [41.8984063, -87.6552902], [41.8984047, -87.6553777], [41.8983853, -87.6564816], [41.8983833, -87.6565954]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1836242528c5be9cda67499fa2f9942f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_cea93323c50198b736f5796f8c8c5f04 = $(`<div id=&quot;html_cea93323c50198b736f5796f8c8c5f04&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4035706302 → 261185599 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24088985&quot; target=&quot;_blank&quot;>24088985</a>, <a href=&quot;https://www.openstreetmap.org/way/773798019&quot; target=&quot;_blank&quot;>773798019</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>151.64476220310831</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>['West Chestnut Street', 'North May Street']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_1836242528c5be9cda67499fa2f9942f.setContent(html_cea93323c50198b736f5796f8c8c5f04);
            
        

        poly_line_76360e6e9f4299bb597b86abcf025036.bindPopup(popup_1836242528c5be9cda67499fa2f9942f)
        ;

        
    
    
            var poly_line_545006eb57c005d97929631b5bdeb703 = L.polyline(
                [[41.8979974, -87.6565817], [41.8981844, -87.6565884]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1f6f6906be67ad23852d7c8c0fb34abf = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_989a57b5820cd67e1628f82fbf8aa1a4 = $(`<div id=&quot;html_989a57b5820cd67e1628f82fbf8aa1a4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4035706303 → 5907549148 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1386550109&quot; target=&quot;_blank&quot;>1386550109</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.800873676387486</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_1f6f6906be67ad23852d7c8c0fb34abf.setContent(html_989a57b5820cd67e1628f82fbf8aa1a4);
            
        

        poly_line_545006eb57c005d97929631b5bdeb703.bindPopup(popup_1f6f6906be67ad23852d7c8c0fb34abf)
        ;

        
    
    
            var poly_line_b51e751a521e013f8762cdb191b3006d = L.polyline(
                [[41.8979974, -87.6565817], [41.8977055, -87.6565758]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0e9875f4ae53153ccddfe4407d835b0d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_bcec5c9ba79e081c569d4f68565e1b9d = $(`<div id=&quot;html_bcec5c9ba79e081c569d4f68565e1b9d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4035706303 → 4035706301 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1386550109&quot; target=&quot;_blank&quot;>1386550109</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>32.461518097601406</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_0e9875f4ae53153ccddfe4407d835b0d.setContent(html_bcec5c9ba79e081c569d4f68565e1b9d);
            
        

        poly_line_b51e751a521e013f8762cdb191b3006d.bindPopup(popup_0e9875f4ae53153ccddfe4407d835b0d)
        ;

        
    
    
            var poly_line_c14fe2f0f29dec2c46ee1cb584bc8681 = L.polyline(
                [[41.8979974, -87.6565817], [41.8979985, -87.6564973], [41.8979989, -87.6564682], [41.8980059, -87.6559313]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0f6410e0ebeb9e1f54fc6ec039f6ecc7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6254ddf20303a8510124be2a03dc68b3 = $(`<div id=&quot;html_6254ddf20303a8510124be2a03dc68b3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4035706303 → 4035706304 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/401113950&quot; target=&quot;_blank&quot;>401113950</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>53.83954792664075</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_0f6410e0ebeb9e1f54fc6ec039f6ecc7.setContent(html_6254ddf20303a8510124be2a03dc68b3);
            
        

        poly_line_c14fe2f0f29dec2c46ee1cb584bc8681.bindPopup(popup_0f6410e0ebeb9e1f54fc6ec039f6ecc7)
        ;

        
    
    
            var poly_line_f6e0f143ec00ea4794f7b0db78974a43 = L.polyline(
                [[41.8980059, -87.6559313], [41.8977153, -87.6559208]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_732cb9e3aa03ffc95243f30ef10277cf = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a2b4d89b04d1a83c61db04498db56aae = $(`<div id=&quot;html_a2b4d89b04d1a83c61db04498db56aae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4035706304 → 4035706305 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/401113951&quot; target=&quot;_blank&quot;>401113951</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>32.324975522255336</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_732cb9e3aa03ffc95243f30ef10277cf.setContent(html_a2b4d89b04d1a83c61db04498db56aae);
            
        

        poly_line_f6e0f143ec00ea4794f7b0db78974a43.bindPopup(popup_732cb9e3aa03ffc95243f30ef10277cf)
        ;

        
    
    
            var poly_line_c5039fd66830815d7ab3b47b591079c5 = L.polyline(
                [[41.8980059, -87.6559313], [41.8979989, -87.6564682], [41.8979985, -87.6564973], [41.8979974, -87.6565817]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c2a91d7be1e2714003388eac848278f0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d569e5d8b6ee809bc3c999b9778c91e1 = $(`<div id=&quot;html_d569e5d8b6ee809bc3c999b9778c91e1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4035706304 → 4035706303 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/401113950&quot; target=&quot;_blank&quot;>401113950</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>53.83954792664075</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_c2a91d7be1e2714003388eac848278f0.setContent(html_d569e5d8b6ee809bc3c999b9778c91e1);
            
        

        poly_line_c5039fd66830815d7ab3b47b591079c5.bindPopup(popup_c2a91d7be1e2714003388eac848278f0)
        ;

        
    
    
            var poly_line_b35a950508d0e85fad548319db587a97 = L.polyline(
                [[41.8980059, -87.6559313], [41.8980131, -87.6553696], [41.8980144, -87.6552783]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_27164b6bbe7ddaee7a2eb29b384fc46d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1fc1e953b59963898c54b90516fd6581 = $(`<div id=&quot;html_1fc1e953b59963898c54b90516fd6581&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4035706304 → 4035706302 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/401113950&quot; target=&quot;_blank&quot;>401113950</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>54.0547111210224</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_27164b6bbe7ddaee7a2eb29b384fc46d.setContent(html_1fc1e953b59963898c54b90516fd6581);
            
        

        poly_line_b35a950508d0e85fad548319db587a97.bindPopup(popup_27164b6bbe7ddaee7a2eb29b384fc46d)
        ;

        
    
    
            var poly_line_d82f6b4f8de3a6e0a112de8b7184b21d = L.polyline(
                [[41.8977153, -87.6559208], [41.8980059, -87.6559313]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f4ef6afd0a787ffac4b3d387f1740f06 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_bcbf2dd6b8171dbe595f423a31760865 = $(`<div id=&quot;html_bcbf2dd6b8171dbe595f423a31760865&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4035706305 → 4035706304 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/401113951&quot; target=&quot;_blank&quot;>401113951</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>32.324975522255336</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_f4ef6afd0a787ffac4b3d387f1740f06.setContent(html_bcbf2dd6b8171dbe595f423a31760865);
            
        

        poly_line_d82f6b4f8de3a6e0a112de8b7184b21d.bindPopup(popup_f4ef6afd0a787ffac4b3d387f1740f06)
        ;

        
    
    
            var poly_line_eafe2aad919f82de2ef44ff04eed8e38 = L.polyline(
                [[41.8977153, -87.6559208], [41.8977072, -87.6564592], [41.8977067, -87.6564909], [41.8977055, -87.6565758]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d58c26db9a61961d6fae46f0ab8c4239 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_04d4ced2cca471756b9ec6d111c5e73c = $(`<div id=&quot;html_04d4ced2cca471756b9ec6d111c5e73c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4035706305 → 4035706301 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/401113949&quot; target=&quot;_blank&quot;>401113949</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>54.22317980009981</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_d58c26db9a61961d6fae46f0ab8c4239.setContent(html_04d4ced2cca471756b9ec6d111c5e73c);
            
        

        poly_line_eafe2aad919f82de2ef44ff04eed8e38.bindPopup(popup_d58c26db9a61961d6fae46f0ab8c4239)
        ;

        
    
    
            var poly_line_2c576a76a44f312be1e7e0cf09e10ef9 = L.polyline(
                [[41.8977153, -87.6559208], [41.8977236, -87.6553683], [41.8977252, -87.6552696]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d7d0f39e9196c8b864081c53914dd40f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_eb160cc58e8f8ed71e7c361bd3a7f45a = $(`<div id=&quot;html_eb160cc58e8f8ed71e7c361bd3a7f45a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4035706305 → 4035706300 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/401113949&quot; target=&quot;_blank&quot;>401113949</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>53.908950309221254</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_d7d0f39e9196c8b864081c53914dd40f.setContent(html_eb160cc58e8f8ed71e7c361bd3a7f45a);
            
        

        poly_line_2c576a76a44f312be1e7e0cf09e10ef9.bindPopup(popup_d7d0f39e9196c8b864081c53914dd40f)
        ;

        
    
    
            var poly_line_fb8138a144eff7a539a36afad0846231 = L.polyline(
                [[41.905038, -87.6481242], [41.9050012, -87.6481233]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_887dd5fac21b18e728470198f1a9024f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_396f06de518abcf617909dbe58de2f90 = $(`<div id=&quot;html_396f06de518abcf617909dbe58de2f90&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4043041910 → 734237297 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/253740820&quot; target=&quot;_blank&quot;>253740820</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>4.092656875349353</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Halsted Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_887dd5fac21b18e728470198f1a9024f.setContent(html_396f06de518abcf617909dbe58de2f90);
            
        

        poly_line_fb8138a144eff7a539a36afad0846231.bindPopup(popup_887dd5fac21b18e728470198f1a9024f)
        ;

        
    
    
            var poly_line_841d910952fc25b0e8a7f84dcdb18f5b = L.polyline(
                [[41.905038, -87.6481242], [41.9050366, -87.648235], [41.9050362, -87.6482751], [41.9050337, -87.6484807]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b5049ac3f5a9b8616018f9cbe9584df5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_25828c7a17974442e613c7620108eb54 = $(`<div id=&quot;html_25828c7a17974442e613c7620108eb54&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4043041910 → 5435936004 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59204089&quot; target=&quot;_blank&quot;>59204089</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>29.506852439272713</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Scott Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_b5049ac3f5a9b8616018f9cbe9584df5.setContent(html_25828c7a17974442e613c7620108eb54);
            
        

        poly_line_841d910952fc25b0e8a7f84dcdb18f5b.bindPopup(popup_b5049ac3f5a9b8616018f9cbe9584df5)
        ;

        
    
    
            var poly_line_8328a249ad8205ae5cd93801d2467541 = L.polyline(
                [[41.905038, -87.6481242], [41.9062597, -87.6481537], [41.9063054, -87.6481548], [41.9063797, -87.6481566]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ded389b4ae653baf621dcd059b91fcb4 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fc278c40e59f9daab89055d9e27c0db2 = $(`<div id=&quot;html_fc278c40e59f9daab89055d9e27c0db2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4043041910 → 264431935 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/253740820&quot; target=&quot;_blank&quot;>253740820</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>149.21453663883014</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Halsted Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_ded389b4ae653baf621dcd059b91fcb4.setContent(html_fc278c40e59f9daab89055d9e27c0db2);
            
        

        poly_line_8328a249ad8205ae5cd93801d2467541.bindPopup(popup_ded389b4ae653baf621dcd059b91fcb4)
        ;

        
    
    
            var poly_line_69ba65cc5568e0980727888ee4c806b6 = L.polyline(
                [[41.9080842, -87.6474134], [41.9082937, -87.6474188], [41.9083617, -87.6474306], [41.9083965, -87.6474672], [41.9084261, -87.6475], [41.9084421, -87.6475523]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ed65e1c8830435552c8c2fe9696b2337 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a7a5ad5305a514a8b88ab0ce3afd9b40 = $(`<div id=&quot;html_a7a5ad5305a514a8b88ab0ce3afd9b40&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4085259566 → 4085259571 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/406459791&quot; target=&quot;_blank&quot;>406459791</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>44.78327547065437</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_ed65e1c8830435552c8c2fe9696b2337.setContent(html_a7a5ad5305a514a8b88ab0ce3afd9b40);
            
        

        poly_line_69ba65cc5568e0980727888ee4c806b6.bindPopup(popup_ed65e1c8830435552c8c2fe9696b2337)
        ;

        
    
    
            var poly_line_07a77a0ea7c2b311294c3e67cf937743 = L.polyline(
                [[41.9084421, -87.6475523], [41.9084599, -87.6475121], [41.9084868, -87.6474876], [41.9085411, -87.6474705], [41.9086119, -87.6474702], [41.9086578, -87.6474761], [41.908704, -87.6475047], [41.9087282, -87.6475432], [41.9087308, -87.647595], [41.9087118, -87.6476465], [41.9086722, -87.6476718]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b81c75e765c0b996199c638fee564b9f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2741cc0f8cbb7f8e8f1733aab4decf8d = $(`<div id=&quot;html_2741cc0f8cbb7f8e8f1733aab4decf8d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4085259571 → 4085259890 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/406459788&quot; target=&quot;_blank&quot;>406459788</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>junction</td><td style='padding:2px 6px;'>roundabout</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>50.44096478302269</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_b81c75e765c0b996199c638fee564b9f.setContent(html_2741cc0f8cbb7f8e8f1733aab4decf8d);
            
        

        poly_line_07a77a0ea7c2b311294c3e67cf937743.bindPopup(popup_b81c75e765c0b996199c638fee564b9f)
        ;

        
    
    
            var poly_line_43fcbbe6b0aad51ec651877bcc18e061 = L.polyline(
                [[41.9084421, -87.6475523], [41.9084261, -87.6475], [41.9083965, -87.6474672], [41.9083617, -87.6474306], [41.9082937, -87.6474188], [41.9080842, -87.6474134]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9fe90d2090ce9d7b60e7490db035e0c2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4c1cefd6fbe52feaa27f050a9b7127aa = $(`<div id=&quot;html_4c1cefd6fbe52feaa27f050a9b7127aa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4085259571 → 4085259566 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/406459791&quot; target=&quot;_blank&quot;>406459791</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>44.78327547065436</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_9fe90d2090ce9d7b60e7490db035e0c2.setContent(html_4c1cefd6fbe52feaa27f050a9b7127aa);
            
        

        poly_line_43fcbbe6b0aad51ec651877bcc18e061.bindPopup(popup_9fe90d2090ce9d7b60e7490db035e0c2)
        ;

        
    
    
            var poly_line_7de9170b8f3a6b9efa5827b19e4d33fd = L.polyline(
                [[41.90852, -87.6476742], [41.9084954, -87.6476585], [41.9084584, -87.6476132], [41.9084421, -87.6475523]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_063205d2fd5afaacd7dbd653ac58a5e1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2c027b470cf128049e1e0639768e9871 = $(`<div id=&quot;html_2c027b470cf128049e1e0639768e9871&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4085259584 → 4085259571 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/406459788&quot; target=&quot;_blank&quot;>406459788</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>junction</td><td style='padding:2px 6px;'>roundabout</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>13.949854270726586</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_063205d2fd5afaacd7dbd653ac58a5e1.setContent(html_2c027b470cf128049e1e0639768e9871);
            
        

        poly_line_7de9170b8f3a6b9efa5827b19e4d33fd.bindPopup(popup_063205d2fd5afaacd7dbd653ac58a5e1)
        ;

        
    
    
            var poly_line_ddaeb5746d130db2f3891528867d5e3b = L.polyline(
                [[41.9085867, -87.647769], [41.9085593, -87.6477154], [41.90852, -87.6476742]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7ec317798e25eb6302ef33750856bcc2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c8e48dc17dfe3ba1c7356becdda0533e = $(`<div id=&quot;html_c8e48dc17dfe3ba1c7356becdda0533e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4085259585 → 4085259584 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/695036317&quot; target=&quot;_blank&quot;>695036317</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>10.923768730765588</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_7ec317798e25eb6302ef33750856bcc2.setContent(html_c8e48dc17dfe3ba1c7356becdda0533e);
            
        

        poly_line_ddaeb5746d130db2f3891528867d5e3b.bindPopup(popup_7ec317798e25eb6302ef33750856bcc2)
        ;

        
    
    
            var poly_line_f0342aa64454baa0c106dcbeb21d6ace = L.polyline(
                [[41.9085867, -87.647769], [41.9085779, -87.648106], [41.9085748, -87.6482146]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_13e651f4979b1f7734726d5fc19b60b7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_12829c2aac6b58be6db38a53bfe1403a = $(`<div id=&quot;html_12829c2aac6b58be6db38a53bfe1403a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4085259585 → 265642220 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/695036320&quot; target=&quot;_blank&quot;>695036320</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>36.898356417455226</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_13e651f4979b1f7734726d5fc19b60b7.setContent(html_12829c2aac6b58be6db38a53bfe1403a);
            
        

        poly_line_f0342aa64454baa0c106dcbeb21d6ace.bindPopup(popup_13e651f4979b1f7734726d5fc19b60b7)
        ;

        
    
    
            var poly_line_e93e63f70a0dcfda94abb6500be978b5 = L.polyline(
                [[41.9086722, -87.6476718], [41.9085948, -87.6476835], [41.90852, -87.6476742]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b555c28546f362cdb7a4a1eb7af8adc0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4d214a70dc692b41d8c657d6962aac4e = $(`<div id=&quot;html_4d214a70dc692b41d8c657d6962aac4e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4085259890 → 4085259584 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/406459788&quot; target=&quot;_blank&quot;>406459788</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>junction</td><td style='padding:2px 6px;'>roundabout</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>17.01370989474533</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_b555c28546f362cdb7a4a1eb7af8adc0.setContent(html_4d214a70dc692b41d8c657d6962aac4e);
            
        

        poly_line_e93e63f70a0dcfda94abb6500be978b5.bindPopup(popup_b555c28546f362cdb7a4a1eb7af8adc0)
        ;

        
    
    
            var poly_line_58d9195761c9a5fda1ac7fb596a66c2d = L.polyline(
                [[41.9086722, -87.6476718], [41.9086375, -87.6477019], [41.9085867, -87.647769]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4c3b52178631057261cf5eb37182723c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6ab64b0bdf218338f1ea4bf94653c646 = $(`<div id=&quot;html_6ab64b0bdf218338f1ea4bf94653c646&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4085259890 → 4085259585 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/695036318&quot; target=&quot;_blank&quot;>695036318</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>12.513501759476888</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_4c3b52178631057261cf5eb37182723c.setContent(html_6ab64b0bdf218338f1ea4bf94653c646);
            
        

        poly_line_58d9195761c9a5fda1ac7fb596a66c2d.bindPopup(popup_4c3b52178631057261cf5eb37182723c)
        ;

        
    
    
            var poly_line_e3b79050cc83224e015fcdf8bc3dea43 = L.polyline(
                [[41.9111972, -87.6603999], [41.9111952, -87.6605298], [41.9111864, -87.661112], [41.9111846, -87.6612263]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fbc2e8bbd4cb4bc1ed9bc07e658fbcff = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c3d2999dbb473eb7e8fa942bbabcd244 = $(`<div id=&quot;html_c3d2999dbb473eb7e8fa942bbabcd244&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4100010499 → 4100010500 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/678454208&quot; target=&quot;_blank&quot;>678454208</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>68.39835815041042</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_fbc2e8bbd4cb4bc1ed9bc07e658fbcff.setContent(html_c3d2999dbb473eb7e8fa942bbabcd244);
            
        

        poly_line_e3b79050cc83224e015fcdf8bc3dea43.bindPopup(popup_fbc2e8bbd4cb4bc1ed9bc07e658fbcff)
        ;

        
    
    
            var poly_line_bb8af363db4dfb00c6f0ee8edac03783 = L.polyline(
                [[41.9111972, -87.6603999], [41.9111903, -87.6603997], [41.9109233, -87.6603922], [41.9108482, -87.6603893], [41.910746, -87.6603983]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_44ee8db74dc913375a6991a29d131f7d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9c840d53f1902dd09b60f83581f1fbfb = $(`<div id=&quot;html_9c840d53f1902dd09b60f83581f1fbfb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4100010499 → 11891975152 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/678454211&quot; target=&quot;_blank&quot;>678454211</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>50.20571097256166</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Throop Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_44ee8db74dc913375a6991a29d131f7d.setContent(html_9c840d53f1902dd09b60f83581f1fbfb);
            
        

        poly_line_bb8af363db4dfb00c6f0ee8edac03783.bindPopup(popup_44ee8db74dc913375a6991a29d131f7d)
        ;

        
    
    
            var poly_line_f471709731412b6d78563f2a147921a5 = L.polyline(
                [[41.9111846, -87.6612263], [41.9111864, -87.661112], [41.9111952, -87.6605298], [41.9111972, -87.6603999]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fac322978dfdaf7f536a101ca38a6991 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_bb1cc98a7817e4dfa41ddef496f2f1a0 = $(`<div id=&quot;html_bb1cc98a7817e4dfa41ddef496f2f1a0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4100010500 → 4100010499 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/678454208&quot; target=&quot;_blank&quot;>678454208</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>68.39835815041042</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_fac322978dfdaf7f536a101ca38a6991.setContent(html_bb1cc98a7817e4dfa41ddef496f2f1a0);
            
        

        poly_line_f471709731412b6d78563f2a147921a5.bindPopup(popup_fac322978dfdaf7f536a101ca38a6991)
        ;

        
    
    
            var poly_line_1ae6a03a638b9bb4bdb7cf53ce6ae7fd = L.polyline(
                [[41.9111846, -87.6612263], [41.910809, -87.6612097], [41.9107312, -87.6612062]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_85772ee575398f45ac1e9ef920138c07 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e76df901047d71e6b25b676ff80d4ce0 = $(`<div id=&quot;html_e76df901047d71e6b25b676ff80d4ce0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4100010500 → 11891975160 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/678454210&quot; target=&quot;_blank&quot;>678454210</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>50.44328110874805</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Ada Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_85772ee575398f45ac1e9ef920138c07.setContent(html_e76df901047d71e6b25b676ff80d4ce0);
            
        

        poly_line_1ae6a03a638b9bb4bdb7cf53ce6ae7fd.bindPopup(popup_85772ee575398f45ac1e9ef920138c07)
        ;

        
    
    
            var poly_line_f333bab91898a859ae26db9fe7d0960f = L.polyline(
                [[41.8973421, -87.6547539], [41.8973393, -87.6548943], [41.8973342, -87.6551508], [41.8973321, -87.6552577]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ddf6f967c246a09f691198c8c069ed92 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_910166dcce0d9356ede979db943de5c9 = $(`<div id=&quot;html_910166dcce0d9356ede979db943de5c9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4100010516 → 261116828 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24070830&quot; target=&quot;_blank&quot;>24070830</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>41.71295730489112</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Fry Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_ddf6f967c246a09f691198c8c069ed92.setContent(html_910166dcce0d9356ede979db943de5c9);
            
        

        poly_line_f333bab91898a859ae26db9fe7d0960f.bindPopup(popup_ddf6f967c246a09f691198c8c069ed92)
        ;

        
    
    
            var poly_line_5ad0a3e686575b0ebac6745247010778 = L.polyline(
                [[41.8973421, -87.6547539], [41.8973588, -87.6539348], [41.8973608, -87.6538138]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4b8e88692326ef651933a2e51ae4b62d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_52d896f661821c6a880e46b24aeb236e = $(`<div id=&quot;html_52d896f661821c6a880e46b24aeb236e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4100010516 → 11270578646 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24070830&quot; target=&quot;_blank&quot;>24070830</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>77.83735680357407</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Fry Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_4b8e88692326ef651933a2e51ae4b62d.setContent(html_52d896f661821c6a880e46b24aeb236e);
            
        

        poly_line_5ad0a3e686575b0ebac6745247010778.bindPopup(popup_4b8e88692326ef651933a2e51ae4b62d)
        ;

        
    
    
            var poly_line_27b817c96bbd417ec1f02889f4eb39ae = L.polyline(
                [[41.8973421, -87.6547539], [41.8972818, -87.6547526], [41.8968125, -87.6547437], [41.8968106, -87.6544033], [41.8968102, -87.6543348], [41.8968098, -87.6542686]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4bd775adfb1ad9362b9b17eb78d2a084 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_313be7bd82bf2d41d62000f284df3573 = $(`<div id=&quot;html_313be7bd82bf2d41d62000f284df3573&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4100010516 → 5455415466 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/566479801&quot; target=&quot;_blank&quot;>566479801</a>, <a href=&quot;https://www.openstreetmap.org/way/407983142&quot; target=&quot;_blank&quot;>407983142</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>98.21916325225266</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_4bd775adfb1ad9362b9b17eb78d2a084.setContent(html_313be7bd82bf2d41d62000f284df3573);
            
        

        poly_line_27b817c96bbd417ec1f02889f4eb39ae.bindPopup(popup_4bd775adfb1ad9362b9b17eb78d2a084)
        ;

        
    
    
            var poly_line_3d1f11ec6c95dc9873709e0e38e9b7c2 = L.polyline(
                [[41.8985568, -87.6585601], [41.8994123, -87.6585924]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_faccd4958669d2457aaec939eb8caa6a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_41c1071f8d0871c512e6abcf5eac5177 = $(`<div id=&quot;html_41c1071f8d0871c512e6abcf5eac5177&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4100010525 → 5907549156 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24098076&quot; target=&quot;_blank&quot;>24098076</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>95.16495003098836</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Willard Court</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_faccd4958669d2457aaec939eb8caa6a.setContent(html_41c1071f8d0871c512e6abcf5eac5177);
            
        

        poly_line_3d1f11ec6c95dc9873709e0e38e9b7c2.bindPopup(popup_faccd4958669d2457aaec939eb8caa6a)
        ;

        
    
    
            var poly_line_f87de51788afceab4038a5a587cf04da = L.polyline(
                [[41.8985568, -87.6585601], [41.8983708, -87.6585544], [41.8983488, -87.6585537]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3870863190f0a030acc2c9d000a94de9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7314350603f3f2f371dcabbb4f623e82 = $(`<div id=&quot;html_7314350603f3f2f371dcabbb4f623e82&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4100010525 → 12289051322 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24098076&quot; target=&quot;_blank&quot;>24098076</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>23.134643177836654</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Willard Court</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_3870863190f0a030acc2c9d000a94de9.setContent(html_7314350603f3f2f371dcabbb4f623e82);
            
        

        poly_line_f87de51788afceab4038a5a587cf04da.bindPopup(popup_3870863190f0a030acc2c9d000a94de9)
        ;

        
    
    
            var poly_line_15b0fe6dca992b33c20da27de23597ed = L.polyline(
                [[41.8985568, -87.6585601], [41.8985594, -87.6584703], [41.8985707, -87.6580815], [41.8993725, -87.6581018]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_972a8e4a18fce59c7c778086e7913da3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_569138e89d817a1e2e9a1d4d897c2f8a = $(`<div id=&quot;html_569138e89d817a1e2e9a1d4d897c2f8a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4100010525 → 4100010527 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/407983144&quot; target=&quot;_blank&quot;>407983144</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>128.81382867299033</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_972a8e4a18fce59c7c778086e7913da3.setContent(html_569138e89d817a1e2e9a1d4d897c2f8a);
            
        

        poly_line_15b0fe6dca992b33c20da27de23597ed.bindPopup(popup_972a8e4a18fce59c7c778086e7913da3)
        ;

        
    
    
            var poly_line_9e0abe2a8e2d6da6ac1a580d7fc8cb31 = L.polyline(
                [[41.8993725, -87.6581018], [41.8985707, -87.6580815], [41.8985594, -87.6584703], [41.8985568, -87.6585601]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_34aae8e64bc83c39cfbcca5e897534d2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a3fa7222a4476d579d79026ea32ff7b7 = $(`<div id=&quot;html_a3fa7222a4476d579d79026ea32ff7b7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4100010527 → 4100010525 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/407983144&quot; target=&quot;_blank&quot;>407983144</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>128.81382867299033</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_34aae8e64bc83c39cfbcca5e897534d2.setContent(html_a3fa7222a4476d579d79026ea32ff7b7);
            
        

        poly_line_9e0abe2a8e2d6da6ac1a580d7fc8cb31.bindPopup(popup_34aae8e64bc83c39cfbcca5e897534d2)
        ;

        
    
    
            var poly_line_69cde0d9c6d0a05dfae8f45f74c199ad = L.polyline(
                [[41.8985909, -87.6438337], [41.8986511, -87.6438839]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_14e0ca88be6e9af841ba2cbc8df322d6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1f609cb639d3db3f7a3e29b63141f78c = $(`<div id=&quot;html_1f609cb639d3db3f7a3e29b63141f78c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4131040101 → 8728510610 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/186983204&quot; target=&quot;_blank&quot;>186983204</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.878547668948847</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_14e0ca88be6e9af841ba2cbc8df322d6.setContent(html_1f609cb639d3db3f7a3e29b63141f78c);
            
        

        poly_line_69cde0d9c6d0a05dfae8f45f74c199ad.bindPopup(popup_14e0ca88be6e9af841ba2cbc8df322d6)
        ;

        
    
    
            var poly_line_b635025518a4755c377f6184824bb1d0 = L.polyline(
                [[41.8985909, -87.6438337], [41.8986182, -87.643776], [41.8987589, -87.643479], [41.8987652, -87.6431323], [41.8987673, -87.643014]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2ecd3c6cd6b3eac3c4ffd423dff110d0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4082e5fb43e86b4dae6d0a3175bb419a = $(`<div id=&quot;html_4082e5fb43e86b4dae6d0a3175bb419a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4131040101 → 4131040103 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/411433486&quot; target=&quot;_blank&quot;>411433486</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>73.29379560029646</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_2ecd3c6cd6b3eac3c4ffd423dff110d0.setContent(html_4082e5fb43e86b4dae6d0a3175bb419a);
            
        

        poly_line_b635025518a4755c377f6184824bb1d0.bindPopup(popup_2ecd3c6cd6b3eac3c4ffd423dff110d0)
        ;

        
    
    
            var poly_line_58c3344b1bc3c3377352bc37e87f62d6 = L.polyline(
                [[41.8987673, -87.643014], [41.8978398, -87.6429677]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7f931071d90613ade14103a76e29b16c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ee0cce9361bfdf35f8dd293bc521052f = $(`<div id=&quot;html_ee0cce9361bfdf35f8dd293bc521052f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4131040103 → 261184865 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/519888259&quot; target=&quot;_blank&quot;>519888259</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>103.20460842668507</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_7f931071d90613ade14103a76e29b16c.setContent(html_ee0cce9361bfdf35f8dd293bc521052f);
            
        

        poly_line_58c3344b1bc3c3377352bc37e87f62d6.bindPopup(popup_7f931071d90613ade14103a76e29b16c)
        ;

        
    
    
            var poly_line_66205d6cc12c05b8519cc2bb5f1c0014 = L.polyline(
                [[41.8987673, -87.643014], [41.8987652, -87.6431323], [41.8987589, -87.643479], [41.8986182, -87.643776], [41.8985909, -87.6438337]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_87f73564f5e7ea627903c15c6bad1f0e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b1feac1f40ce10612d0594c2580597ca = $(`<div id=&quot;html_b1feac1f40ce10612d0594c2580597ca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4131040103 → 4131040101 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/411433486&quot; target=&quot;_blank&quot;>411433486</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>73.29379560029646</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_87f73564f5e7ea627903c15c6bad1f0e.setContent(html_b1feac1f40ce10612d0594c2580597ca);
            
        

        poly_line_66205d6cc12c05b8519cc2bb5f1c0014.bindPopup(popup_87f73564f5e7ea627903c15c6bad1f0e)
        ;

        
    
    
            var poly_line_a726d92e133df6f347c17c63e0d4a823 = L.polyline(
                [[41.8987673, -87.643014], [41.8993793, -87.6430415], [41.8995994, -87.6430514], [41.9003316, -87.6430843], [41.900353, -87.6430853], [41.9004145, -87.6430881]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ef3f816ef3a69a68839979772c686659 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_381de38c88a10a25f24f710ed12ed966 = $(`<div id=&quot;html_381de38c88a10a25f24f710ed12ed966&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4131040103 → 261184866 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/519888259&quot; target=&quot;_blank&quot;>519888259</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>183.26318987488617</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_ef3f816ef3a69a68839979772c686659.setContent(html_381de38c88a10a25f24f710ed12ed966);
            
        

        poly_line_a726d92e133df6f347c17c63e0d4a823.bindPopup(popup_ef3f816ef3a69a68839979772c686659)
        ;

        
    
    
            var poly_line_8ff524a3f4f492cd5ffda45aa2c855c7 = L.polyline(
                [[41.9075558, -87.6459145], [41.9079605, -87.6455794], [41.9080308, -87.6455212]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4827a34ab637fe5759778a6c075271cd = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_201a05d9a7831e004d755343eb7cd9d0 = $(`<div id=&quot;html_201a05d9a7831e004d755343eb7cd9d0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4131053950 → 263984906 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/616876452&quot; target=&quot;_blank&quot;>616876452</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>62.040426020120464</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Ogden Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_4827a34ab637fe5759778a6c075271cd.setContent(html_201a05d9a7831e004d755343eb7cd9d0);
            
        

        poly_line_8ff524a3f4f492cd5ffda45aa2c855c7.bindPopup(popup_4827a34ab637fe5759778a6c075271cd)
        ;

        
    
    
            var poly_line_bdff89e0755c38b9727ac04be28b2434 = L.polyline(
                [[41.9075558, -87.6459145], [41.9075173, -87.6459933], [41.9075073, -87.6460816]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2667238a624ed2877c9865bd96496ba5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1e1d379789a7cba68c5826374b627763 = $(`<div id=&quot;html_1e1d379789a7cba68c5826374b627763&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4131053950 → 5831748105 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/616876452&quot; target=&quot;_blank&quot;>616876452</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>15.191988679175262</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Ogden Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_2667238a624ed2877c9865bd96496ba5.setContent(html_1e1d379789a7cba68c5826374b627763);
            
        

        poly_line_bdff89e0755c38b9727ac04be28b2434.bindPopup(popup_2667238a624ed2877c9865bd96496ba5)
        ;

        
    
    
            var poly_line_e27dc87e5ed337f7a70e92c0f76f9b07 = L.polyline(
                [[41.8990696, -87.648427], [41.8990994, -87.648355]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_84ff33fae8e3d2e783390c3c5f170565 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_65abe3f146d89155dfe885d5ea95475d = $(`<div id=&quot;html_65abe3f146d89155dfe885d5ea95475d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4267128725 → 4267128727 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/427504314&quot; target=&quot;_blank&quot;>427504314</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>6.818404810604898</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_84ff33fae8e3d2e783390c3c5f170565.setContent(html_65abe3f146d89155dfe885d5ea95475d);
            
        

        poly_line_e27dc87e5ed337f7a70e92c0f76f9b07.bindPopup(popup_84ff33fae8e3d2e783390c3c5f170565)
        ;

        
    
    
            var poly_line_14e433b20991d4043175af86d1a42469 = L.polyline(
                [[41.8990696, -87.648427], [41.898955, -87.648532], [41.8989322, -87.6485321], [41.8989065, -87.6485322], [41.8986885, -87.6485327], [41.8986615, -87.648524], [41.8986418, -87.6484941], [41.8986319, -87.6484563], [41.8986304, -87.6484159], [41.8986404, -87.6483751], [41.8986629, -87.6483463], [41.8989821, -87.6483213], [41.8990295, -87.6483198], [41.8990994, -87.648355]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1653bf0e597b968a88b93d74ef9a2b8a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ce5b1084ea6da69b9db3d8ede4f8662e = $(`<div id=&quot;html_ce5b1084ea6da69b9db3d8ede4f8662e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4267128725 → 4267128727 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/427504311&quot; target=&quot;_blank&quot;>427504311</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>114.25173863247734</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_1653bf0e597b968a88b93d74ef9a2b8a.setContent(html_ce5b1084ea6da69b9db3d8ede4f8662e);
            
        

        poly_line_14e433b20991d4043175af86d1a42469.bindPopup(popup_1653bf0e597b968a88b93d74ef9a2b8a)
        ;

        
    
    
            var poly_line_aadd5fdfd94efc9f3adc524e803968d7 = L.polyline(
                [[41.8990696, -87.648427], [41.8991052, -87.648496], [41.8992311, -87.6487401]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c7dfb2187534b1012775529059072de0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_249b1ea60d74f0d60d86ccb95ac5bf28 = $(`<div id=&quot;html_249b1ea60d74f0d60d86ccb95ac5bf28&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4267128725 → 4267128729 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/427504314&quot; target=&quot;_blank&quot;>427504314</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>31.527909773802193</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_c7dfb2187534b1012775529059072de0.setContent(html_249b1ea60d74f0d60d86ccb95ac5bf28);
            
        

        poly_line_aadd5fdfd94efc9f3adc524e803968d7.bindPopup(popup_c7dfb2187534b1012775529059072de0)
        ;

        
    
    
            var poly_line_dea12d5f9675ef415c2e6796c05c8e58 = L.polyline(
                [[41.8990834, -87.6488965], [41.899239, -87.6487556]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_cd3aed7c1244d9ddcf542ca30af254cf = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6a36c09ae6d103050797b1ea96e0624e = $(`<div id=&quot;html_6a36c09ae6d103050797b1ea96e0624e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4267128726 → 12191955738 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317315814&quot; target=&quot;_blank&quot;>1317315814</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.86503949038454</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_cd3aed7c1244d9ddcf542ca30af254cf.setContent(html_6a36c09ae6d103050797b1ea96e0624e);
            
        

        poly_line_dea12d5f9675ef415c2e6796c05c8e58.bindPopup(popup_cd3aed7c1244d9ddcf542ca30af254cf)
        ;

        
    
    
            var poly_line_d9378c95f3b62a03950b69e73ca33d5d = L.polyline(
                [[41.8990994, -87.648355], [41.8990696, -87.648427]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e4375d5e2be3bbbc5afca58d15440d7a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d05c54a4b7bfa87cf8e4856059cfc7db = $(`<div id=&quot;html_d05c54a4b7bfa87cf8e4856059cfc7db&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4267128727 → 4267128725 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/427504314&quot; target=&quot;_blank&quot;>427504314</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>6.818404810604898</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_e4375d5e2be3bbbc5afca58d15440d7a.setContent(html_d05c54a4b7bfa87cf8e4856059cfc7db);
            
        

        poly_line_d9378c95f3b62a03950b69e73ca33d5d.bindPopup(popup_e4375d5e2be3bbbc5afca58d15440d7a)
        ;

        
    
    
            var poly_line_95134253af3da9d2d15c7ff0b0c5626d = L.polyline(
                [[41.8990994, -87.648355], [41.8990295, -87.6483198], [41.8989821, -87.6483213], [41.8986629, -87.6483463], [41.8986404, -87.6483751], [41.8986304, -87.6484159], [41.8986319, -87.6484563], [41.8986418, -87.6484941], [41.8986615, -87.648524], [41.8986885, -87.6485327], [41.8989065, -87.6485322], [41.8989322, -87.6485321], [41.898955, -87.648532], [41.8990696, -87.648427]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_46c505713b580d4ea5dbdfa8385439ca = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_57d992ae52b045dc1795535d12112d9a = $(`<div id=&quot;html_57d992ae52b045dc1795535d12112d9a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4267128727 → 4267128725 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/427504311&quot; target=&quot;_blank&quot;>427504311</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>114.25173863247736</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_46c505713b580d4ea5dbdfa8385439ca.setContent(html_57d992ae52b045dc1795535d12112d9a);
            
        

        poly_line_95134253af3da9d2d15c7ff0b0c5626d.bindPopup(popup_46c505713b580d4ea5dbdfa8385439ca)
        ;

        
    
    
            var poly_line_88239cd5f8d603a03422e2fded8c2cc9 = L.polyline(
                [[41.8990994, -87.648355], [41.8991292, -87.6483305], [41.8992035, -87.6482694]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_582ca9d7920ce1f2ce47a21152797fe6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9760c2df9ef93f67d896b072251d2a81 = $(`<div id=&quot;html_9760c2df9ef93f67d896b072251d2a81&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4267128727 → 4267128728 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/427504314&quot; target=&quot;_blank&quot;>427504314</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>13.571392081395587</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_582ca9d7920ce1f2ce47a21152797fe6.setContent(html_9760c2df9ef93f67d896b072251d2a81);
            
        

        poly_line_88239cd5f8d603a03422e2fded8c2cc9.bindPopup(popup_582ca9d7920ce1f2ce47a21152797fe6)
        ;

        
    
    
            var poly_line_ca4009dbbb0f24771e8f54be7b5d8374 = L.polyline(
                [[41.8992035, -87.6482694], [41.8993796, -87.648604]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_441b8bf6c885af9754417179cef5f819 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_295725825bc69b5fab94cf91822076d8 = $(`<div id=&quot;html_295725825bc69b5fab94cf91822076d8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4267128728 → 4267128734 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24096218&quot; target=&quot;_blank&quot;>24096218</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>33.91665451670019</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_441b8bf6c885af9754417179cef5f819.setContent(html_295725825bc69b5fab94cf91822076d8);
            
        

        poly_line_ca4009dbbb0f24771e8f54be7b5d8374.bindPopup(popup_441b8bf6c885af9754417179cef5f819)
        ;

        
    
    
            var poly_line_b3a9c3fba5a1bf472d8b7f9c813f3197 = L.polyline(
                [[41.8992035, -87.6482694], [41.8990528, -87.6479873], [41.8990524, -87.6478849], [41.8991423, -87.647888], [41.8993964, -87.6478998], [41.8997468, -87.6479161]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_340d27fa82766c6efd0689771f8580dc = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4772e96665a53b178f2287449aa876b8 = $(`<div id=&quot;html_4772e96665a53b178f2287449aa876b8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4267128728 → 7932870420 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24096218&quot; target=&quot;_blank&quot;>24096218</a>, <a href=&quot;https://www.openstreetmap.org/way/1413080019&quot; target=&quot;_blank&quot;>1413080019</a>, <a href=&quot;https://www.openstreetmap.org/way/623095622&quot; target=&quot;_blank&quot;>623095622</a>, <a href=&quot;https://www.openstreetmap.org/way/242897402&quot; target=&quot;_blank&quot;>242897402</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>['secondary', 'unclassified']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>114.4716083009333</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>['North North Branch Street', 'North Halsted Street']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr>             </table>         </div>         </div>`)[0];
                popup_340d27fa82766c6efd0689771f8580dc.setContent(html_4772e96665a53b178f2287449aa876b8);
            
        

        poly_line_b3a9c3fba5a1bf472d8b7f9c813f3197.bindPopup(popup_340d27fa82766c6efd0689771f8580dc)
        ;

        
    
    
            var poly_line_acf310ce82e2df2ca47542aa2129a4bb = L.polyline(
                [[41.8992035, -87.6482694], [41.8991292, -87.6483305], [41.8990994, -87.648355]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d7c74792e4797ddb3dc58dac10fb784d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3ce4a3ea3b48d8485d53f6a11624aab6 = $(`<div id=&quot;html_3ce4a3ea3b48d8485d53f6a11624aab6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4267128728 → 4267128727 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/427504314&quot; target=&quot;_blank&quot;>427504314</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>13.571392081395587</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_d7c74792e4797ddb3dc58dac10fb784d.setContent(html_3ce4a3ea3b48d8485d53f6a11624aab6);
            
        

        poly_line_acf310ce82e2df2ca47542aa2129a4bb.bindPopup(popup_d7c74792e4797ddb3dc58dac10fb784d)
        ;

        
    
    
            var poly_line_2bff584124c9d22637d89c791d409b75 = L.polyline(
                [[41.8992311, -87.6487401], [41.899239, -87.6487556]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9d00d6a0d712051ac5e597aeb66660e3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9de5038b22860106c33825111b3f2e2d = $(`<div id=&quot;html_9de5038b22860106c33825111b3f2e2d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4267128729 → 12191955738 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/427504313&quot; target=&quot;_blank&quot;>427504313</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>1.554790448532081</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_9d00d6a0d712051ac5e597aeb66660e3.setContent(html_9de5038b22860106c33825111b3f2e2d);
            
        

        poly_line_2bff584124c9d22637d89c791d409b75.bindPopup(popup_9d00d6a0d712051ac5e597aeb66660e3)
        ;

        
    
    
            var poly_line_ec7c11af799b8175165657f113c8a1ab = L.polyline(
                [[41.8992311, -87.6487401], [41.8993062, -87.6486713], [41.8993796, -87.648604]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_10adaad99e5c9900fb30f7c04c879220 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_21f36ebb1cc108a2e76c18f6a0252f23 = $(`<div id=&quot;html_21f36ebb1cc108a2e76c18f6a0252f23&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4267128729 → 4267128734 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/427504312&quot; target=&quot;_blank&quot;>427504312</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.988635254591095</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_10adaad99e5c9900fb30f7c04c879220.setContent(html_21f36ebb1cc108a2e76c18f6a0252f23);
            
        

        poly_line_ec7c11af799b8175165657f113c8a1ab.bindPopup(popup_10adaad99e5c9900fb30f7c04c879220)
        ;

        
    
    
            var poly_line_1b6486a888e8f9320543fcedd7440553 = L.polyline(
                [[41.8992311, -87.6487401], [41.8991052, -87.648496], [41.8990696, -87.648427]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_cadf4f4558f28a986213a9978b43d69f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_606b390616e753d9c88df4d79b3f8211 = $(`<div id=&quot;html_606b390616e753d9c88df4d79b3f8211&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4267128729 → 4267128725 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/427504314&quot; target=&quot;_blank&quot;>427504314</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>31.527909773802193</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_cadf4f4558f28a986213a9978b43d69f.setContent(html_606b390616e753d9c88df4d79b3f8211);
            
        

        poly_line_1b6486a888e8f9320543fcedd7440553.bindPopup(popup_cadf4f4558f28a986213a9978b43d69f)
        ;

        
    
    
            var poly_line_3bef59a3792659b18c8eb6105f085948 = L.polyline(
                [[41.8992019, -87.6490603], [41.8993318, -87.6489371], [41.8992882, -87.6488596], [41.8992685, -87.6488203], [41.899239, -87.6487556]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0216f91cbd3c1c79ba7a164946b19741 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fef9d3deea91e9bba1c52a94b8755a20 = $(`<div id=&quot;html_fef9d3deea91e9bba1c52a94b8755a20&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4267128730 → 12191955738 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/427504313&quot; target=&quot;_blank&quot;>427504313</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>35.92224999065278</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_0216f91cbd3c1c79ba7a164946b19741.setContent(html_fef9d3deea91e9bba1c52a94b8755a20);
            
        

        poly_line_3bef59a3792659b18c8eb6105f085948.bindPopup(popup_0216f91cbd3c1c79ba7a164946b19741)
        ;

        
    
    
            var poly_line_d185b59bdb1c05dd1e3ab00054116083 = L.polyline(
                [[41.8993796, -87.648604], [41.8992035, -87.6482694]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ff79f6780bf35096e6a55d1d481f593f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_acd3c072f6e39d5f9fd8545454121768 = $(`<div id=&quot;html_acd3c072f6e39d5f9fd8545454121768&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4267128734 → 4267128728 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24096218&quot; target=&quot;_blank&quot;>24096218</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>33.91665451670019</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_ff79f6780bf35096e6a55d1d481f593f.setContent(html_acd3c072f6e39d5f9fd8545454121768);
            
        

        poly_line_d185b59bdb1c05dd1e3ab00054116083.bindPopup(popup_ff79f6780bf35096e6a55d1d481f593f)
        ;

        
    
    
            var poly_line_8f070d7b0888fda99abf047ebbc632d8 = L.polyline(
                [[41.8993796, -87.648604], [41.899429, -87.648698], [41.899546, -87.6489203]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c371e0529c6fed8a0949278be3a03a32 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_91a45ffbefaad7f220bc7b3b3f9e178f = $(`<div id=&quot;html_91a45ffbefaad7f220bc7b3b3f9e178f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4267128734 → 2168537771 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24096218&quot; target=&quot;_blank&quot;>24096218</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>32.057213097550985</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_c371e0529c6fed8a0949278be3a03a32.setContent(html_91a45ffbefaad7f220bc7b3b3f9e178f);
            
        

        poly_line_8f070d7b0888fda99abf047ebbc632d8.bindPopup(popup_c371e0529c6fed8a0949278be3a03a32)
        ;

        
    
    
            var poly_line_3f31cd3a25c1afb8af312f9459c1ee84 = L.polyline(
                [[41.8993796, -87.648604], [41.8993062, -87.6486713], [41.8992311, -87.6487401]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e455d6727243848aaffa85326380d0dd = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_bfa683b4f32b24f2e69677d0fc18ecdd = $(`<div id=&quot;html_bfa683b4f32b24f2e69677d0fc18ecdd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4267128734 → 4267128729 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/427504312&quot; target=&quot;_blank&quot;>427504312</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.988635254591095</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_e455d6727243848aaffa85326380d0dd.setContent(html_bfa683b4f32b24f2e69677d0fc18ecdd);
            
        

        poly_line_3f31cd3a25c1afb8af312f9459c1ee84.bindPopup(popup_e455d6727243848aaffa85326380d0dd)
        ;

        
    
    
            var poly_line_1acfaa8bcd96ca29566ad5dd05c4fc45 = L.polyline(
                [[41.9029797, -87.6480541], [41.9031268, -87.648062]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ef046b29c30cef45894acecb67fa82c0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a61b7fdfd98ce6fdc4b5a03b4fd4a2c7 = $(`<div id=&quot;html_a61b7fdfd98ce6fdc4b5a03b4fd4a2c7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4269601033 → 3683147341 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/31798302&quot; target=&quot;_blank&quot;>31798302</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>16.36985827558784</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Halsted Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_ef046b29c30cef45894acecb67fa82c0.setContent(html_a61b7fdfd98ce6fdc4b5a03b4fd4a2c7);
            
        

        poly_line_1acfaa8bcd96ca29566ad5dd05c4fc45.bindPopup(popup_ef046b29c30cef45894acecb67fa82c0)
        ;

        
    
    
            var poly_line_568fabafb783f4fa914f4f22a03b8433 = L.polyline(
                [[41.9029797, -87.6480541], [41.9029447, -87.6480523], [41.9022106, -87.6480118], [41.9017673, -87.6479932], [41.9010944, -87.6479714]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_df6b687a189b428319f02950f4efb960 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fa9ed15b03a5772e5fa3bbabe6bfe21c = $(`<div id=&quot;html_fa9ed15b03a5772e5fa3bbabe6bfe21c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4269601033 → 12182779452 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/31798304&quot; target=&quot;_blank&quot;>31798304</a>, <a href=&quot;https://www.openstreetmap.org/way/242897402&quot; target=&quot;_blank&quot;>242897402</a>, <a href=&quot;https://www.openstreetmap.org/way/435397260&quot; target=&quot;_blank&quot;>435397260</a>, <a href=&quot;https://www.openstreetmap.org/way/31798302&quot; target=&quot;_blank&quot;>31798302</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>bridge</td><td style='padding:2px 6px;'>yes</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>209.75350727616853</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Halsted Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_df6b687a189b428319f02950f4efb960.setContent(html_fa9ed15b03a5772e5fa3bbabe6bfe21c);
            
        

        poly_line_568fabafb783f4fa914f4f22a03b8433.bindPopup(popup_df6b687a189b428319f02950f4efb960)
        ;

        
    
    
            var poly_line_1ce75eb347722449c6cce0536db655bc = L.polyline(
                [[41.9029797, -87.6480541], [41.9029809, -87.6479349], [41.9029836, -87.6477538]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0e334fc5d4bb0ae5f72e6f8eced550dd = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c63e0bf32777d1fc556c142a6799e7e6 = $(`<div id=&quot;html_c63e0bf32777d1fc556c142a6799e7e6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4269601033 → 12182779441 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/683189249&quot; target=&quot;_blank&quot;>683189249</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>24.856713137049162</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_0e334fc5d4bb0ae5f72e6f8eced550dd.setContent(html_c63e0bf32777d1fc556c142a6799e7e6);
            
        

        poly_line_1ce75eb347722449c6cce0536db655bc.bindPopup(popup_0e334fc5d4bb0ae5f72e6f8eced550dd)
        ;

        
    
    
            var poly_line_7e5c5560d974b1a5a2b9d92a8bd3cb9f = L.polyline(
                [[41.9036872, -87.644907], [41.903693, -87.6444873]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_587783136fe70f0f9040196865686d03 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ff5b4495e70a976abb08c44a29e6ce95 = $(`<div id=&quot;html_ff5b4495e70a976abb08c44a29e6ce95&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4333091844 → 345370273 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435397307&quot; target=&quot;_blank&quot;>435397307</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>34.739940037584915</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_587783136fe70f0f9040196865686d03.setContent(html_ff5b4495e70a976abb08c44a29e6ce95);
            
        

        poly_line_7e5c5560d974b1a5a2b9d92a8bd3cb9f.bindPopup(popup_587783136fe70f0f9040196865686d03)
        ;

        
    
    
            var poly_line_d5fa40b253ba8bdea681a499cc30c00d = L.polyline(
                [[41.9036872, -87.644907], [41.9036812, -87.6453441], [41.9036654, -87.6464945], [41.9036641, -87.6465853]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_123f2ae5313ff5d0e9997db567fdec61 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_11cd02d0b1f3d0f9c7c3a6740b530201 = $(`<div id=&quot;html_11cd02d0b1f3d0f9c7c3a6740b530201&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4333091844 → 345370271 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435397298&quot; target=&quot;_blank&quot;>435397298</a>, <a href=&quot;https://www.openstreetmap.org/way/435397327&quot; target=&quot;_blank&quot;>435397327</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>5</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>138.9182152979461</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_123f2ae5313ff5d0e9997db567fdec61.setContent(html_11cd02d0b1f3d0f9c7c3a6740b530201);
            
        

        poly_line_d5fa40b253ba8bdea681a499cc30c00d.bindPopup(popup_123f2ae5313ff5d0e9997db567fdec61)
        ;

        
    
    
            var poly_line_e62d0f462d595c0e20a575a0360b4ede = L.polyline(
                [[41.9036872, -87.644907], [41.9037813, -87.6449119], [41.9038082, -87.6449127]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_aa03205a61b070e16caeb01b636f9ce7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_76928b957b7b1ad0fa00d409f021fe58 = $(`<div id=&quot;html_76928b957b7b1ad0fa00d409f021fe58&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4333091844 → 7757124493 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/830804366&quot; target=&quot;_blank&quot;>830804366</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>13.463192905007517</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_aa03205a61b070e16caeb01b636f9ce7.setContent(html_76928b957b7b1ad0fa00d409f021fe58);
            
        

        poly_line_e62d0f462d595c0e20a575a0360b4ede.bindPopup(popup_aa03205a61b070e16caeb01b636f9ce7)
        ;

        
    
    
            var poly_line_6f4ab14643dfa84249dd8b12a7d050b7 = L.polyline(
                [[41.903997, -87.6588925], [41.90395, -87.6589318]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ce79c1dc97fe92c426b0f3daa11792e3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f00ba17e4b230b8ab96d52f643541de3 = $(`<div id=&quot;html_f00ba17e4b230b8ab96d52f643541de3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4337248984 → 12187280172 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1292541141&quot; target=&quot;_blank&quot;>1292541141</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>6.155569897712518</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_ce79c1dc97fe92c426b0f3daa11792e3.setContent(html_f00ba17e4b230b8ab96d52f643541de3);
            
        

        poly_line_6f4ab14643dfa84249dd8b12a7d050b7.bindPopup(popup_ce79c1dc97fe92c426b0f3daa11792e3)
        ;

        
    
    
            var poly_line_e54f454946e6acf6d346a448fcaed35a = L.polyline(
                [[41.903997, -87.6588925], [41.903908, -87.6588863]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_16afea6cbc2703057decb7b4d37f20d7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_bacd86b1752166c534ea81d19a7d59bc = $(`<div id=&quot;html_bacd86b1752166c534ea81d19a7d59bc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4337248984 → 12187280173 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820028&quot; target=&quot;_blank&quot;>1316820028</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary_link</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>9.909655148863322</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_16afea6cbc2703057decb7b4d37f20d7.setContent(html_bacd86b1752166c534ea81d19a7d59bc);
            
        

        poly_line_e54f454946e6acf6d346a448fcaed35a.bindPopup(popup_16afea6cbc2703057decb7b4d37f20d7)
        ;

        
    
    
            var poly_line_4ae0042d9a561c8b1b5acdabdaa4716a = L.polyline(
                [[41.903997, -87.6588925], [41.9036512, -87.658505], [41.9034918, -87.6583384]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c47525a445ce2020e3da01cde3097d3e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_776f87e62311a70c6ab8829919f4a497 = $(`<div id=&quot;html_776f87e62311a70c6ab8829919f4a497&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4337248984 → 344357410 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435831062&quot; target=&quot;_blank&quot;>435831062</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>72.52486751220242</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_c47525a445ce2020e3da01cde3097d3e.setContent(html_776f87e62311a70c6ab8829919f4a497);
            
        

        poly_line_4ae0042d9a561c8b1b5acdabdaa4716a.bindPopup(popup_c47525a445ce2020e3da01cde3097d3e)
        ;

        
    
    
            var poly_line_76832bbbf29c499f431d6c9f48bfc01b = L.polyline(
                [[41.903997, -87.6588925], [41.9042435, -87.6591641], [41.9043515, -87.6592599]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_982d8442a26fb7fe12a7bf9a2581c598 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2f683558b173f2f24723fa758f78382a = $(`<div id=&quot;html_2f683558b173f2f24723fa758f78382a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4337248984 → 1699464698 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1290800461&quot; target=&quot;_blank&quot;>1290800461</a>, <a href=&quot;https://www.openstreetmap.org/way/221317663&quot; target=&quot;_blank&quot;>221317663</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>3</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>49.837370921636094</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_982d8442a26fb7fe12a7bf9a2581c598.setContent(html_2f683558b173f2f24723fa758f78382a);
            
        

        poly_line_76832bbbf29c499f431d6c9f48bfc01b.bindPopup(popup_982d8442a26fb7fe12a7bf9a2581c598)
        ;

        
    
    
            var poly_line_ee273ac3c3a398e3f347cdc0536f9716 = L.polyline(
                [[41.9101635, -87.6603812], [41.9094177, -87.6603517]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2cf0ae18c2aa19d5be96b13d7be8b407 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5269ae3a9da6fecea31a9f0749b68cb8 = $(`<div id=&quot;html_5269ae3a9da6fecea31a9f0749b68cb8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4589688373 → 12195806945 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/583427311&quot; target=&quot;_blank&quot;>583427311</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>82.96521535992905</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Throop Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_2cf0ae18c2aa19d5be96b13d7be8b407.setContent(html_5269ae3a9da6fecea31a9f0749b68cb8);
            
        

        poly_line_ee273ac3c3a398e3f347cdc0536f9716.bindPopup(popup_2cf0ae18c2aa19d5be96b13d7be8b407)
        ;

        
    
    
            var poly_line_d9efca25dc524c6a4dd4525301885a33 = L.polyline(
                [[41.9101635, -87.6603812], [41.9101641, -87.6602821], [41.910172, -87.6596239], [41.9105523, -87.6595568]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9bb9265f4ef726e89fc19823260f359f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_863acec0092b65b7ba3d91aedb45f60b = $(`<div id=&quot;html_863acec0092b65b7ba3d91aedb45f60b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4589688373 → 5493314506 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317723605&quot; target=&quot;_blank&quot;>1317723605</a>, <a href=&quot;https://www.openstreetmap.org/way/463726319&quot; target=&quot;_blank&quot;>463726319</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>105.32485884113828</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_9bb9265f4ef726e89fc19823260f359f.setContent(html_863acec0092b65b7ba3d91aedb45f60b);
            
        

        poly_line_d9efca25dc524c6a4dd4525301885a33.bindPopup(popup_9bb9265f4ef726e89fc19823260f359f)
        ;

        
    
    
            var poly_line_8b56bd3ae8fdbc520b5db4c05599f8de = L.polyline(
                [[41.8970059, -87.6575267], [41.8971417, -87.6575304]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_23ad818e3f4aac2a2b39ea05ad59d2bd = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6221a853de4a8cf58033c3d254af5440 = $(`<div id=&quot;html_6221a853de4a8cf58033c3d254af5440&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4593178662 → 261116820 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24442831&quot; target=&quot;_blank&quot;>24442831</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>15.103397385825186</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Racine Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_23ad818e3f4aac2a2b39ea05ad59d2bd.setContent(html_6221a853de4a8cf58033c3d254af5440);
            
        

        poly_line_8b56bd3ae8fdbc520b5db4c05599f8de.bindPopup(popup_23ad818e3f4aac2a2b39ea05ad59d2bd)
        ;

        
    
    
            var poly_line_7097f37d03ba1246112f61df67fd12e7 = L.polyline(
                [[41.90906, -87.660749], [41.9091072, -87.6607511], [41.909134, -87.6607526], [41.9092153, -87.660758], [41.9095103, -87.6608579], [41.9097694, -87.6609412], [41.9098633, -87.6609655]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_70235cbce78db16674d12ffec8ea2809 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b8942730caae4cdfab8d0d493c71dd08 = $(`<div id=&quot;html_b8942730caae4cdfab8d0d493c71dd08&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4621143835 → 13125728085 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/467501412&quot; target=&quot;_blank&quot;>467501412</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>91.37020239125876</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_70235cbce78db16674d12ffec8ea2809.setContent(html_b8942730caae4cdfab8d0d493c71dd08);
            
        

        poly_line_7097f37d03ba1246112f61df67fd12e7.bindPopup(popup_70235cbce78db16674d12ffec8ea2809)
        ;

        
    
    
            var poly_line_bee553f67a62c4c4d05756f934b2638f = L.polyline(
                [[41.90906, -87.660749], [41.9090578, -87.6610118], [41.9090551, -87.6611404]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ffdeea8675a5b8cdd3cea799da7f2e32 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fedba94992e967009f655288119c2664 = $(`<div id=&quot;html_fedba94992e967009f655288119c2664&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4621143835 → 739194076 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316291527&quot; target=&quot;_blank&quot;>1316291527</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>32.39475985496562</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Le Moyne Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_ffdeea8675a5b8cdd3cea799da7f2e32.setContent(html_fedba94992e967009f655288119c2664);
            
        

        poly_line_bee553f67a62c4c4d05756f934b2638f.bindPopup(popup_ffdeea8675a5b8cdd3cea799da7f2e32)
        ;

        
    
    
            var poly_line_a7d1ba141f520382535a02da60331f84 = L.polyline(
                [[41.90906, -87.660749], [41.909062, -87.6604618], [41.9090632, -87.6603421]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_95b2d165263cd95d747c56255d25edb8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1c9e72383331d27535be406eefa766fd = $(`<div id=&quot;html_1c9e72383331d27535be406eefa766fd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4621143835 → 261322937 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316291527&quot; target=&quot;_blank&quot;>1316291527</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>33.673743955297276</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Le Moyne Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_95b2d165263cd95d747c56255d25edb8.setContent(html_1c9e72383331d27535be406eefa766fd);
            
        

        poly_line_a7d1ba141f520382535a02da60331f84.bindPopup(popup_95b2d165263cd95d747c56255d25edb8)
        ;

        
    
    
            var poly_line_eda8f98a159e4bec7891071081c3b46a = L.polyline(
                [[41.9104471, -87.6494903], [41.9103879, -87.6494891]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_85f3cb724dc09e93aa33f22ffbf086c6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_09fd247df4eedc8adbec2d8e6d10f056 = $(`<div id=&quot;html_09fd247df4eedc8adbec2d8e6d10f056&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4679315318 → 2401648279 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/240891836&quot; target=&quot;_blank&quot;>240891836</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>6.583497882712268</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Dayton Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_85f3cb724dc09e93aa33f22ffbf086c6.setContent(html_09fd247df4eedc8adbec2d8e6d10f056);
            
        

        poly_line_eda8f98a159e4bec7891071081c3b46a.bindPopup(popup_85f3cb724dc09e93aa33f22ffbf086c6)
        ;

        
    
    
            var poly_line_3247d1598031782282dbfd6d77937848 = L.polyline(
                [[41.9104471, -87.6494903], [41.9104464, -87.6495763], [41.9104432, -87.6499437]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_516679670b9290ce7adc45f37bea45de = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3c57c3263fbb989cc5fbba8bb99514cf = $(`<div id=&quot;html_3c57c3263fbb989cc5fbba8bb99514cf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4679315318 → 4679315319 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1057509735&quot; target=&quot;_blank&quot;>1057509735</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>37.52146918161188</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_516679670b9290ce7adc45f37bea45de.setContent(html_3c57c3263fbb989cc5fbba8bb99514cf);
            
        

        poly_line_3247d1598031782282dbfd6d77937848.bindPopup(popup_516679670b9290ce7adc45f37bea45de)
        ;

        
    
    
            var poly_line_ae8eba371eebab92dea7af66cd3e03a4 = L.polyline(
                [[41.9104432, -87.6499437], [41.910563, -87.6499517], [41.910566, -87.6496567], [41.9105665, -87.649579], [41.9105669, -87.6494928]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c7587d274fe41fa6335a9952ae90084d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4382e90add7cdbf5df28dcf22c2ba3d9 = $(`<div id=&quot;html_4382e90add7cdbf5df28dcf22c2ba3d9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4679315319 → 4679315322 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/473899420&quot; target=&quot;_blank&quot;>473899420</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>51.314284590608786</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_c7587d274fe41fa6335a9952ae90084d.setContent(html_4382e90add7cdbf5df28dcf22c2ba3d9);
            
        

        poly_line_ae8eba371eebab92dea7af66cd3e03a4.bindPopup(popup_c7587d274fe41fa6335a9952ae90084d)
        ;

        
    
    
            var poly_line_a7d3e49bf01eec14ec19d12734457b53 = L.polyline(
                [[41.9104432, -87.6499437], [41.9104464, -87.6495763], [41.9104471, -87.6494903]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_69ee12d8db06c9a3e9d38cebe0cd5664 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0be382f365cd3dea104dcd4a5f523078 = $(`<div id=&quot;html_0be382f365cd3dea104dcd4a5f523078&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4679315319 → 4679315318 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1057509735&quot; target=&quot;_blank&quot;>1057509735</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>37.52146918161188</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_69ee12d8db06c9a3e9d38cebe0cd5664.setContent(html_0be382f365cd3dea104dcd4a5f523078);
            
        

        poly_line_a7d3e49bf01eec14ec19d12734457b53.bindPopup(popup_69ee12d8db06c9a3e9d38cebe0cd5664)
        ;

        
    
    
            var poly_line_9597d50f83c4452aa41d35d10b7c4eb5 = L.polyline(
                [[41.9105669, -87.6494928], [41.9104471, -87.6494903]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_cf8e82a61723148686b59b45efaa738a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_840766d390b80bba470f4186e18401f3 = $(`<div id=&quot;html_840766d390b80bba470f4186e18401f3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4679315322 → 4679315318 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/240891836&quot; target=&quot;_blank&quot;>240891836</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>13.322777302681027</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Dayton Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_cf8e82a61723148686b59b45efaa738a.setContent(html_840766d390b80bba470f4186e18401f3);
            
        

        poly_line_9597d50f83c4452aa41d35d10b7c4eb5.bindPopup(popup_cf8e82a61723148686b59b45efaa738a)
        ;

        
    
    
            var poly_line_6122e29bf538ef9b6ca569a64f816544 = L.polyline(
                [[41.9104113, -87.6502414], [41.9108084, -87.6502561], [41.9108916, -87.6502592]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_40e90e969e53e61b64650fb001c62a48 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6368bdd48eecbeccf2e74d19921c253a = $(`<div id=&quot;html_6368bdd48eecbeccf2e74d19921c253a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 4679315327 → 12195807201 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/473899423&quot; target=&quot;_blank&quot;>473899423</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>53.427306737385</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_40e90e969e53e61b64650fb001c62a48.setContent(html_6368bdd48eecbeccf2e74d19921c253a);
            
        

        poly_line_6122e29bf538ef9b6ca569a64f816544.bindPopup(popup_40e90e969e53e61b64650fb001c62a48)
        ;

        
    
    
            var poly_line_e6816933e385baecffb85329c8a9c1af = L.polyline(
                [[41.9021394, -87.6540844], [41.9022291, -87.6538852], [41.9029219, -87.6544458], [41.9028203, -87.6546514], [41.9025385, -87.6544226]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_97e0586786014f9c9b55aea3b2f5af87 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d393537635b85b96bd7e2f42e3d44a78 = $(`<div id=&quot;html_d393537635b85b96bd7e2f42e3d44a78&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5114880456 → 6776163349 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/525859032&quot; target=&quot;_blank&quot;>525859032</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>166.23286479080917</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_97e0586786014f9c9b55aea3b2f5af87.setContent(html_d393537635b85b96bd7e2f42e3d44a78);
            
        

        poly_line_e6816933e385baecffb85329c8a9c1af.bindPopup(popup_97e0586786014f9c9b55aea3b2f5af87)
        ;

        
    
    
            var poly_line_80db63db3f4a48fa913596eb93420570 = L.polyline(
                [[41.9021394, -87.6540844], [41.9023183, -87.654236], [41.9025385, -87.6544226]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_280be6a7980bbfe8b3d0f79b3532f341 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_485f5155a458465ce8e5e688e261e91c = $(`<div id=&quot;html_485f5155a458465ce8e5e688e261e91c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5114880456 → 6776163349 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/525859032&quot; target=&quot;_blank&quot;>525859032</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>52.46737759340332</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_280be6a7980bbfe8b3d0f79b3532f341.setContent(html_485f5155a458465ce8e5e688e261e91c);
            
        

        poly_line_80db63db3f4a48fa913596eb93420570.bindPopup(popup_280be6a7980bbfe8b3d0f79b3532f341)
        ;

        
    
    
            var poly_line_957b6c9672195ffb496ccbe3a5a9be85 = L.polyline(
                [[41.9021394, -87.6540844], [41.9021163, -87.6541364], [41.9020987, -87.6541761], [41.9020616, -87.6542594]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9e542e15209abbeea637f9a0417d0402 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_52b8407a6ed5c330ff03dd87655ff120 = $(`<div id=&quot;html_52b8407a6ed5c330ff03dd87655ff120&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5114880456 → 5114880460 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316281918&quot; target=&quot;_blank&quot;>1316281918</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>16.870159447089037</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_9e542e15209abbeea637f9a0417d0402.setContent(html_52b8407a6ed5c330ff03dd87655ff120);
            
        

        poly_line_957b6c9672195ffb496ccbe3a5a9be85.bindPopup(popup_9e542e15209abbeea637f9a0417d0402)
        ;

        
    
    
            var poly_line_c085e3abb4a435ba4ed156ac322d3c0b = L.polyline(
                [[41.9020616, -87.6542594], [41.9020245, -87.6542288]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_bce0ac37bd3b9d609c9701182fd06f8c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_dd48e522bcd627c343b8c2d4aac04783 = $(`<div id=&quot;html_dd48e522bcd627c343b8c2d4aac04783&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5114880460 → 12192087402 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273623183&quot; target=&quot;_blank&quot;>273623183</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>4.840652841348101</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_bce0ac37bd3b9d609c9701182fd06f8c.setContent(html_dd48e522bcd627c343b8c2d4aac04783);
            
        

        poly_line_c085e3abb4a435ba4ed156ac322d3c0b.bindPopup(popup_bce0ac37bd3b9d609c9701182fd06f8c)
        ;

        
    
    
            var poly_line_7658df8d80d50e5fa9695e69f41fd425 = L.polyline(
                [[41.9020616, -87.6542594], [41.902237, -87.6544007], [41.9023484, -87.6544905]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_686071ca6c9726f9307d81c578c08675 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_15f5bddfd87e9546cd4c28c60d4cbed1 = $(`<div id=&quot;html_15f5bddfd87e9546cd4c28c60d4cbed1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5114880460 → 12192087396 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273623183&quot; target=&quot;_blank&quot;>273623183</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>37.18636521258482</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_686071ca6c9726f9307d81c578c08675.setContent(html_15f5bddfd87e9546cd4c28c60d4cbed1);
            
        

        poly_line_7658df8d80d50e5fa9695e69f41fd425.bindPopup(popup_686071ca6c9726f9307d81c578c08675)
        ;

        
    
    
            var poly_line_49b22e3d0d44a1f58aa3fd326212cd16 = L.polyline(
                [[41.9020616, -87.6542594], [41.9020987, -87.6541761], [41.9021163, -87.6541364], [41.9021394, -87.6540844]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_542493f27c08491221eed769068e6266 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2adcd0a96264d5ba72dfa3c5ec44bae1 = $(`<div id=&quot;html_2adcd0a96264d5ba72dfa3c5ec44bae1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5114880460 → 5114880456 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316281918&quot; target=&quot;_blank&quot;>1316281918</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>16.870159447089037</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_542493f27c08491221eed769068e6266.setContent(html_2adcd0a96264d5ba72dfa3c5ec44bae1);
            
        

        poly_line_49b22e3d0d44a1f58aa3fd326212cd16.bindPopup(popup_542493f27c08491221eed769068e6266)
        ;

        
    
    
            var poly_line_ede6c3f2d0cbefe9171e8f1d24d64e5b = L.polyline(
                [[41.9029267, -87.6431856], [41.9026584, -87.6431752]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_bc5173caa42b07340d0a096a8a0689d4 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fbdc20968399f468299ea679f1c5f833 = $(`<div id=&quot;html_fbdc20968399f468299ea679f1c5f833&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5149934486 → 261184868 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59208011&quot; target=&quot;_blank&quot;>59208011</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>29.84605413581867</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_bc5173caa42b07340d0a096a8a0689d4.setContent(html_fbdc20968399f468299ea679f1c5f833);
            
        

        poly_line_ede6c3f2d0cbefe9171e8f1d24d64e5b.bindPopup(popup_bc5173caa42b07340d0a096a8a0689d4)
        ;

        
    
    
            var poly_line_492e300554b14ba61deac7ac9cb6cd63 = L.polyline(
                [[41.9029267, -87.6431856], [41.9036273, -87.6432128], [41.9037161, -87.6432163]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c15b9d65358330069ef401d306db8d44 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f31bbb9879b90b53760027af6716b1de = $(`<div id=&quot;html_f31bbb9879b90b53760027af6716b1de&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5149934486 → 344365298 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59208011&quot; target=&quot;_blank&quot;>59208011</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>87.81416273814705</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_c15b9d65358330069ef401d306db8d44.setContent(html_f31bbb9879b90b53760027af6716b1de);
            
        

        poly_line_492e300554b14ba61deac7ac9cb6cd63.bindPopup(popup_c15b9d65358330069ef401d306db8d44)
        ;

        
    
    
            var poly_line_fcb6e5513fc2a0e844d188bb29ff8239 = L.polyline(
                [[41.9098956, -87.647507], [41.9102025, -87.647121]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_93a997ca1cbd9dbb0a92b8b96cbcb824 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1896a4dc58d013bf177d1ab778679a9d = $(`<div id=&quot;html_1896a4dc58d013bf177d1ab778679a9d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5235039325 → 261185409 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1126560631&quot; target=&quot;_blank&quot;>1126560631</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>46.74234055316537</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Weed Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_93a997ca1cbd9dbb0a92b8b96cbcb824.setContent(html_1896a4dc58d013bf177d1ab778679a9d);
            
        

        poly_line_fcb6e5513fc2a0e844d188bb29ff8239.bindPopup(popup_93a997ca1cbd9dbb0a92b8b96cbcb824)
        ;

        
    
    
            var poly_line_c3e304e569a04f2c107cc82fe10943f5 = L.polyline(
                [[41.9098956, -87.647507], [41.9097326, -87.6477111], [41.9096657, -87.6477929]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c16e9e2242d23a186bf8611b7792a762 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2ab5304430437e69d870c3ad959a55a2 = $(`<div id=&quot;html_2ab5304430437e69d870c3ad959a55a2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5235039325 → 263985031 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24083760&quot; target=&quot;_blank&quot;>24083760</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>34.831980449569954</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Weed Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_c16e9e2242d23a186bf8611b7792a762.setContent(html_2ab5304430437e69d870c3ad959a55a2);
            
        

        poly_line_c3e304e569a04f2c107cc82fe10943f5.bindPopup(popup_c16e9e2242d23a186bf8611b7792a762)
        ;

        
    
    
            var poly_line_fc2da1cddfd7b02518049baeca050664 = L.polyline(
                [[41.9098956, -87.647507], [41.910207, -87.6479474], [41.910521, -87.6475464], [41.9108551, -87.6475546], [41.9109367, -87.6475567]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_acb255b3d03c0251d96a7b8a736a11a5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_23d6237a0fd0308155b3e73daf423346 = $(`<div id=&quot;html_23d6237a0fd0308155b3e73daf423346&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5235039325 → 12195807202 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/541372406&quot; target=&quot;_blank&quot;>541372406</a>, <a href=&quot;https://www.openstreetmap.org/way/541372407&quot; target=&quot;_blank&quot;>541372407</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>144.67010660482475</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_acb255b3d03c0251d96a7b8a736a11a5.setContent(html_23d6237a0fd0308155b3e73daf423346);
            
        

        poly_line_fc2da1cddfd7b02518049baeca050664.bindPopup(popup_acb255b3d03c0251d96a7b8a736a11a5)
        ;

        
    
    
            var poly_line_4005ef3536df3a48b3f8bb8b2a5c1dfd = L.polyline(
                [[41.8970357, -87.6536193], [41.8970655, -87.6536567], [41.8971024, -87.6537269], [41.8971327, -87.6538051]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_562412074ecf260f01fd123c4239a7c5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ca182f8cdea2574cfe2e9907292a7522 = $(`<div id=&quot;html_ca182f8cdea2574cfe2e9907292a7522&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5299785531 → 10556426050 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1132143915&quot; target=&quot;_blank&quot;>1132143915</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.944394922376695</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Carpenter Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_562412074ecf260f01fd123c4239a7c5.setContent(html_ca182f8cdea2574cfe2e9907292a7522);
            
        

        poly_line_4005ef3536df3a48b3f8bb8b2a5c1dfd.bindPopup(popup_562412074ecf260f01fd123c4239a7c5)
        ;

        
    
    
            var poly_line_ddf5a45274105df210cdc2e254e04b08 = L.polyline(
                [[41.9055002, -87.6486554], [41.9051002, -87.6485056], [41.9050337, -87.6484807]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_21d6cba3d98ec73642e60c428b2fed70 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d8436f956102d7fef8c77fbe133ac39e = $(`<div id=&quot;html_d8436f956102d7fef8c77fbe133ac39e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5435936003 → 5435936004 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/564124600&quot; target=&quot;_blank&quot;>564124600</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>53.849608241662814</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_21d6cba3d98ec73642e60c428b2fed70.setContent(html_d8436f956102d7fef8c77fbe133ac39e);
            
        

        poly_line_ddf5a45274105df210cdc2e254e04b08.bindPopup(popup_21d6cba3d98ec73642e60c428b2fed70)
        ;

        
    
    
            var poly_line_c217457772a0811bb34b32848fca3b18 = L.polyline(
                [[41.9050337, -87.6484807], [41.9050321, -87.6486199]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_66d58544a12b5c425073e3bb839d8082 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8ffb083cee0520f8e14e88b3e5a5402e = $(`<div id=&quot;html_8ffb083cee0520f8e14e88b3e5a5402e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5435936004 → 734237804 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59204089&quot; target=&quot;_blank&quot;>59204089</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>11.521184537941448</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Scott Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_66d58544a12b5c425073e3bb839d8082.setContent(html_8ffb083cee0520f8e14e88b3e5a5402e);
            
        

        poly_line_c217457772a0811bb34b32848fca3b18.bindPopup(popup_66d58544a12b5c425073e3bb839d8082)
        ;

        
    
    
            var poly_line_6140f807ed835f9b2d4ae1bf17a9ddf9 = L.polyline(
                [[41.9050337, -87.6484807], [41.9050362, -87.6482751], [41.9050366, -87.648235], [41.905038, -87.6481242]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b899a70c4fecb4e6b781eba9c5583030 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_61a3eff3d88d67c9a04e5aef39b1d4a5 = $(`<div id=&quot;html_61a3eff3d88d67c9a04e5aef39b1d4a5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5435936004 → 4043041910 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59204089&quot; target=&quot;_blank&quot;>59204089</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>29.506852439272713</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Scott Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_b899a70c4fecb4e6b781eba9c5583030.setContent(html_61a3eff3d88d67c9a04e5aef39b1d4a5);
            
        

        poly_line_6140f807ed835f9b2d4ae1bf17a9ddf9.bindPopup(popup_b899a70c4fecb4e6b781eba9c5583030)
        ;

        
    
    
            var poly_line_9324569f8401e4e2eb0f39cc892ac91f = L.polyline(
                [[41.9050337, -87.6484807], [41.9051002, -87.6485056], [41.9055002, -87.6486554]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8e07294a7122f4da85e798d3a94a64ca = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_17f0bcf028956df9cfad5b08ef2f2628 = $(`<div id=&quot;html_17f0bcf028956df9cfad5b08ef2f2628&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5435936004 → 5435936003 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/564124600&quot; target=&quot;_blank&quot;>564124600</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>53.849608241662814</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_8e07294a7122f4da85e798d3a94a64ca.setContent(html_17f0bcf028956df9cfad5b08ef2f2628);
            
        

        poly_line_9324569f8401e4e2eb0f39cc892ac91f.bindPopup(popup_8e07294a7122f4da85e798d3a94a64ca)
        ;

        
    
    
            var poly_line_04b265015f28e9a410808420c0a49823 = L.polyline(
                [[41.8968098, -87.6542686], [41.8968102, -87.6543348], [41.8968106, -87.6544033], [41.8968125, -87.6547437], [41.8972818, -87.6547526], [41.8973421, -87.6547539]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ada7184cf085a7a53409cb44d642352c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_409e74808e238df8194265aaaa34defd = $(`<div id=&quot;html_409e74808e238df8194265aaaa34defd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5455415466 → 4100010516 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/566479801&quot; target=&quot;_blank&quot;>566479801</a>, <a href=&quot;https://www.openstreetmap.org/way/407983142&quot; target=&quot;_blank&quot;>407983142</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>98.21916325225264</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_ada7184cf085a7a53409cb44d642352c.setContent(html_409e74808e238df8194265aaaa34defd);
            
        

        poly_line_04b265015f28e9a410808420c0a49823.bindPopup(popup_ada7184cf085a7a53409cb44d642352c)
        ;

        
    
    
            var poly_line_e55c969a7c894cf351056e867805092a = L.polyline(
                [[41.8992591, -87.6529729], [41.8989157, -87.6531042]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#3cb44b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#3cb44b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_16aafda5d2c58ab074b417373d6f00d9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_bbbbb06222d674f2e4850d8f580bcd96 = $(`<div id=&quot;html_bbbbb06222d674f2e4850d8f580bcd96&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5463076777 → 7085584934 (key 0)<br>                 <b>Component</b> 1<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316821472&quot; target=&quot;_blank&quot;>1316821472</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>39.700633959281454</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_16aafda5d2c58ab074b417373d6f00d9.setContent(html_bbbbb06222d674f2e4850d8f580bcd96);
            
        

        poly_line_e55c969a7c894cf351056e867805092a.bindPopup(popup_16aafda5d2c58ab074b417373d6f00d9)
        ;

        
    
    
            var poly_line_a1178b139d3b37614295f011b4e37400 = L.polyline(
                [[41.8998742, -87.6572484], [41.8998671, -87.6576014]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_615f77ca7303640d8da732cd10b9a842 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_eeccd365fc029d94a76bf8321d1f0e5f = $(`<div id=&quot;html_eeccd365fc029d94a76bf8321d1f0e5f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5479954573 → 261336508 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/569914535&quot; target=&quot;_blank&quot;>569914535</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>29.226340223105115</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Augusta Boulevard</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_615f77ca7303640d8da732cd10b9a842.setContent(html_eeccd365fc029d94a76bf8321d1f0e5f);
            
        

        poly_line_a1178b139d3b37614295f011b4e37400.bindPopup(popup_615f77ca7303640d8da732cd10b9a842)
        ;

        
    
    
            var poly_line_e19943aa3d2a306f43923eeb2430fc4f = L.polyline(
                [[41.8998742, -87.6572484], [41.8998756, -87.6571781]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2c5efdc71a6561dc0928735957a51d25 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_55204a22f8bb2cf6378544842dc4e771 = $(`<div id=&quot;html_55204a22f8bb2cf6378544842dc4e771&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5479954573 → 9687430258 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/569914535&quot; target=&quot;_blank&quot;>569914535</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>5.820387665848346</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Augusta Boulevard</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_2c5efdc71a6561dc0928735957a51d25.setContent(html_55204a22f8bb2cf6378544842dc4e771);
            
        

        poly_line_e19943aa3d2a306f43923eeb2430fc4f.bindPopup(popup_2c5efdc71a6561dc0928735957a51d25)
        ;

        
    
    
            var poly_line_17593ce4b1ff47204df0d7b8adef02cf = L.polyline(
                [[41.8998742, -87.6572484], [41.899934, -87.6572511], [41.8999619, -87.6572526], [41.9002619, -87.6572689], [41.900251, -87.6582273], [41.9003265, -87.6583235], [41.90055, -87.6583347]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6835001749693a561f9fee969e862bfb = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_183389d2f3ad19b99b82e723c8e516e2 = $(`<div id=&quot;html_183389d2f3ad19b99b82e723c8e516e2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5479954573 → 9911454347 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/915013739&quot; target=&quot;_blank&quot;>915013739</a>, <a href=&quot;https://www.openstreetmap.org/way/915013740&quot; target=&quot;_blank&quot;>915013740</a>, <a href=&quot;https://www.openstreetmap.org/way/569914534&quot; target=&quot;_blank&quot;>569914534</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>158.91322555946246</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_6835001749693a561f9fee969e862bfb.setContent(html_183389d2f3ad19b99b82e723c8e516e2);
            
        

        poly_line_17593ce4b1ff47204df0d7b8adef02cf.bindPopup(popup_6835001749693a561f9fee969e862bfb)
        ;

        
    
    
            var poly_line_d0268d50d4c8cdb7a30f228e903d89a7 = L.polyline(
                [[41.900652, -87.6583398], [41.9006493, -87.6586168]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_935772a6772d3408630e23a8d1213812 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6040febb0b1df15f308875c24000cf6f = $(`<div id=&quot;html_6040febb0b1df15f308875c24000cf6f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5479954576 → 11735383566 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1126560639&quot; target=&quot;_blank&quot;>1126560639</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.927300547381837</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Cortez Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_935772a6772d3408630e23a8d1213812.setContent(html_6040febb0b1df15f308875c24000cf6f);
            
        

        poly_line_d0268d50d4c8cdb7a30f228e903d89a7.bindPopup(popup_935772a6772d3408630e23a8d1213812)
        ;

        
    
    
            var poly_line_7a881682ecf006a4339ebb490cbbcaec = L.polyline(
                [[41.900652, -87.6583398], [41.9005814, -87.6583363], [41.90055, -87.6583347]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0d6e50028baa318b3c30ca817ad0489f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_79562abf7e2f0b38caaee725ebed9288 = $(`<div id=&quot;html_79562abf7e2f0b38caaee725ebed9288&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5479954576 → 9911454347 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/915013739&quot; target=&quot;_blank&quot;>915013739</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>11.349751207884458</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_0d6e50028baa318b3c30ca817ad0489f.setContent(html_79562abf7e2f0b38caaee725ebed9288);
            
        

        poly_line_7a881682ecf006a4339ebb490cbbcaec.bindPopup(popup_0d6e50028baa318b3c30ca817ad0489f)
        ;

        
    
    
            var poly_line_d06e9e1e49d24d5f7df6c5cac2b9ddee = L.polyline(
                [[41.900652, -87.6583398], [41.9006574, -87.6579651], [41.9006654, -87.6574133]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e1108cedddc7942bab23542a85fbdfbd = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d3dc0a1ff123e7f048bd73af4d682c00 = $(`<div id=&quot;html_d3dc0a1ff123e7f048bd73af4d682c00&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5479954576 → 11735383559 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24071514&quot; target=&quot;_blank&quot;>24071514</a>, <a href=&quot;https://www.openstreetmap.org/way/1126560639&quot; target=&quot;_blank&quot;>1126560639</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>76.69433100976383</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Cortez Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_e1108cedddc7942bab23542a85fbdfbd.setContent(html_d3dc0a1ff123e7f048bd73af4d682c00);
            
        

        poly_line_d06e9e1e49d24d5f7df6c5cac2b9ddee.bindPopup(popup_e1108cedddc7942bab23542a85fbdfbd)
        ;

        
    
    
            var poly_line_52c00c8dc4749030851dcfffb0fed8c6 = L.polyline(
                [[41.8996747, -87.6614835], [41.8994178, -87.661473], [41.8994136, -87.6616576], [41.8996705, -87.6616681], [41.8996747, -87.6614835]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fef5fa8f0b95390606a67ec9611f640b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fb715510bcc23289ed78171348e8defe = $(`<div id=&quot;html_fb715510bcc23289ed78171348e8defe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5492667237 → 5492667237 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571534538&quot; target=&quot;_blank&quot;>571534538</a>, <a href=&quot;https://www.openstreetmap.org/way/571534539&quot; target=&quot;_blank&quot;>571534539</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>87.72934483790696</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_fef5fa8f0b95390606a67ec9611f640b.setContent(html_fb715510bcc23289ed78171348e8defe);
            
        

        poly_line_52c00c8dc4749030851dcfffb0fed8c6.bindPopup(popup_fef5fa8f0b95390606a67ec9611f640b)
        ;

        
    
    
            var poly_line_b79297b27dfaba59313ef164be6138be = L.polyline(
                [[41.8996747, -87.6614835], [41.899733, -87.6614822], [41.8998165, -87.6614826]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_dc19a47326da8c6e7e2793d83656207a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_85efe269f2bd9dbc667ecaf0e28c94a1 = $(`<div id=&quot;html_85efe269f2bd9dbc667ecaf0e28c94a1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5492667237 → 5492667238 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571534540&quot; target=&quot;_blank&quot;>571534540</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>15.768414698778857</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_dc19a47326da8c6e7e2793d83656207a.setContent(html_85efe269f2bd9dbc667ecaf0e28c94a1);
            
        

        poly_line_b79297b27dfaba59313ef164be6138be.bindPopup(popup_dc19a47326da8c6e7e2793d83656207a)
        ;

        
    
    
            var poly_line_5e8e4c6e048f7c48689c207435fb78ea = L.polyline(
                [[41.8998165, -87.6614826], [41.8998237, -87.6611543], [41.8998422, -87.6609825]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_abdd74a14a25fe4ee624315f16a3f76f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_30384777c043a9ea36302c89a448af85 = $(`<div id=&quot;html_30384777c043a9ea36302c89a448af85&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5492667238 → 43503249 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24112110&quot; target=&quot;_blank&quot;>24112110</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>3</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>41.55011003315853</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>maxspeed</td><td style='padding:2px 6px;'>20 mph</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Augusta Boulevard</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_abdd74a14a25fe4ee624315f16a3f76f.setContent(html_30384777c043a9ea36302c89a448af85);
            
        

        poly_line_5e8e4c6e048f7c48689c207435fb78ea.bindPopup(popup_abdd74a14a25fe4ee624315f16a3f76f)
        ;

        
    
    
            var poly_line_fe15e9e7d3076b13b3babaf528615069 = L.polyline(
                [[41.8998165, -87.6614826], [41.899733, -87.6614822], [41.8996747, -87.6614835]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b618508e42f939ff655971f8f35fe15e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fbbb15538478ba2e4ad8ec5489a17429 = $(`<div id=&quot;html_fbbb15538478ba2e4ad8ec5489a17429&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5492667238 → 5492667237 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571534540&quot; target=&quot;_blank&quot;>571534540</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>15.768414698778857</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_b618508e42f939ff655971f8f35fe15e.setContent(html_fbbb15538478ba2e4ad8ec5489a17429);
            
        

        poly_line_fe15e9e7d3076b13b3babaf528615069.bindPopup(popup_b618508e42f939ff655971f8f35fe15e)
        ;

        
    
    
            var poly_line_00f51add0215606d30dac17a08929ac6 = L.polyline(
                [[41.9001499, -87.6487394], [41.9003659, -87.6482863]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_19748cb2299c0fbb080feca14768b894 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_da7a8831076f8dfd8311727f265adade = $(`<div id=&quot;html_da7a8831076f8dfd8311727f265adade&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5492726813 → 5492726814 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571543760&quot; target=&quot;_blank&quot;>571543760</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>44.53234680194432</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_19748cb2299c0fbb080feca14768b894.setContent(html_da7a8831076f8dfd8311727f265adade);
            
        

        poly_line_00f51add0215606d30dac17a08929ac6.bindPopup(popup_19748cb2299c0fbb080feca14768b894)
        ;

        
    
    
            var poly_line_b530dd3f62bb8764f7d14731db0e3c90 = L.polyline(
                [[41.9003659, -87.6482863], [41.9002356, -87.6481699]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3ffb8ffb3311a1520c56256552f42b4a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e611228b85654dfd5bec05e4c7a35552 = $(`<div id=&quot;html_e611228b85654dfd5bec05e4c7a35552&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5492726814 → 5492726816 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24372003&quot; target=&quot;_blank&quot;>24372003</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>17.39914880233635</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Hooker Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_3ffb8ffb3311a1520c56256552f42b4a.setContent(html_e611228b85654dfd5bec05e4c7a35552);
            
        

        poly_line_b530dd3f62bb8764f7d14731db0e3c90.bindPopup(popup_3ffb8ffb3311a1520c56256552f42b4a)
        ;

        
    
    
            var poly_line_da77f7f5e77bc017daca487dbce10b55 = L.polyline(
                [[41.9003659, -87.6482863], [41.9001499, -87.6487394]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b3225c5ab9b634cedb69e73a8c538128 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5e464224d2f88e40bcb3f06e3e9e4bb3 = $(`<div id=&quot;html_5e464224d2f88e40bcb3f06e3e9e4bb3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5492726814 → 5492726813 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571543760&quot; target=&quot;_blank&quot;>571543760</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>44.53234680194432</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_b3225c5ab9b634cedb69e73a8c538128.setContent(html_5e464224d2f88e40bcb3f06e3e9e4bb3);
            
        

        poly_line_da77f7f5e77bc017daca487dbce10b55.bindPopup(popup_b3225c5ab9b634cedb69e73a8c538128)
        ;

        
    
    
            var poly_line_c464a12baa03b5864ec5233c4eff591b = L.polyline(
                [[41.9003659, -87.6482863], [41.901093, -87.6489057], [41.9011584, -87.648965]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_32c29782b3f62571c4fa06965412f2ee = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_28cb019fd4c2c2e1cbbf17c6abca9919 = $(`<div id=&quot;html_28cb019fd4c2c2e1cbbf17c6abca9919&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5492726814 → 261126254 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24372003&quot; target=&quot;_blank&quot;>24372003</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>104.50542869350228</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Hooker Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_32c29782b3f62571c4fa06965412f2ee.setContent(html_28cb019fd4c2c2e1cbbf17c6abca9919);
            
        

        poly_line_c464a12baa03b5864ec5233c4eff591b.bindPopup(popup_32c29782b3f62571c4fa06965412f2ee)
        ;

        
    
    
            var poly_line_9ced39cd28017127f8ebbe3f4cd639bc = L.polyline(
                [[41.8999822, -87.6486871], [41.9001917, -87.6482571], [41.9002356, -87.6481699]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a3a0ddcd561ddcc95dde5eef3ea469a9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e847fa712d07ee8fb9fd3c6975a968f5 = $(`<div id=&quot;html_e847fa712d07ee8fb9fd3c6975a968f5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5492726815 → 5492726816 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571543761&quot; target=&quot;_blank&quot;>571543761</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>51.247606994654035</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_a3a0ddcd561ddcc95dde5eef3ea469a9.setContent(html_e847fa712d07ee8fb9fd3c6975a968f5);
            
        

        poly_line_9ced39cd28017127f8ebbe3f4cd639bc.bindPopup(popup_a3a0ddcd561ddcc95dde5eef3ea469a9)
        ;

        
    
    
            var poly_line_aad86a8522e51b65d07451abb0539d56 = L.polyline(
                [[41.9002356, -87.6481699], [41.9003659, -87.6482863]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_bca1c3dc10d76be5541479edd1d5646d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0483b1c71c03b6ac76f85d00f9d86757 = $(`<div id=&quot;html_0483b1c71c03b6ac76f85d00f9d86757&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5492726816 → 5492726814 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24372003&quot; target=&quot;_blank&quot;>24372003</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>17.39914880233635</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Hooker Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_bca1c3dc10d76be5541479edd1d5646d.setContent(html_0483b1c71c03b6ac76f85d00f9d86757);
            
        

        poly_line_aad86a8522e51b65d07451abb0539d56.bindPopup(popup_bca1c3dc10d76be5541479edd1d5646d)
        ;

        
    
    
            var poly_line_35218c787b8b954a5dc3f328880ef7d4 = L.polyline(
                [[41.9002356, -87.6481699], [41.9001917, -87.6482571], [41.8999822, -87.6486871]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_69b1eea4d7fe21c8b81b093eab615861 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0565049d5e235360f526224968845fdf = $(`<div id=&quot;html_0565049d5e235360f526224968845fdf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5492726816 → 5492726815 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571543761&quot; target=&quot;_blank&quot;>571543761</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>51.247606994654035</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_69b1eea4d7fe21c8b81b093eab615861.setContent(html_0565049d5e235360f526224968845fdf);
            
        

        poly_line_35218c787b8b954a5dc3f328880ef7d4.bindPopup(popup_69b1eea4d7fe21c8b81b093eab615861)
        ;

        
    
    
            var poly_line_38d7ee8dd6d93bda44f86fccd17d52ac = L.polyline(
                [[41.9002356, -87.6481699], [41.9001487, -87.6480446], [41.9001474, -87.6479331]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_21d0cc6cb022db23e47c2f5530250921 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_cf39a4e39e6adcd1222cee90db2203c6 = $(`<div id=&quot;html_cf39a4e39e6adcd1222cee90db2203c6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5492726816 → 261916117 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1125567617&quot; target=&quot;_blank&quot;>1125567617</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>23.403659631517048</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Hooker Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_21d0cc6cb022db23e47c2f5530250921.setContent(html_cf39a4e39e6adcd1222cee90db2203c6);
            
        

        poly_line_38d7ee8dd6d93bda44f86fccd17d52ac.bindPopup(popup_21d0cc6cb022db23e47c2f5530250921)
        ;

        
    
    
            var poly_line_37bda5565c0d6c126fd6d1c36a5a426d = L.polyline(
                [[41.9102823, -87.6603878], [41.9101635, -87.6603812]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_64cc0fe6d380456bc98352b6aaae1c03 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_77a1b252925cb752e0bc5483af249796 = $(`<div id=&quot;html_77a1b252925cb752e0bc5483af249796&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493121374 → 4589688373 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/583427311&quot; target=&quot;_blank&quot;>583427311</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>13.221261216274053</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Throop Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_64cc0fe6d380456bc98352b6aaae1c03.setContent(html_77a1b252925cb752e0bc5483af249796);
            
        

        poly_line_37bda5565c0d6c126fd6d1c36a5a426d.bindPopup(popup_64cc0fe6d380456bc98352b6aaae1c03)
        ;

        
    
    
            var poly_line_cc7477ac1444f326e8eb5d5787d51e01 = L.polyline(
                [[41.9102823, -87.6603878], [41.9102824, -87.660448], [41.9102819, -87.6605004], [41.9102794, -87.6608328]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3306b88211ccb9990e4397fcbe6c5b85 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9a35a49034efc3a89721f64db7a11281 = $(`<div id=&quot;html_9a35a49034efc3a89721f64db7a11281&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493121374 → 5493121375 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1427783270&quot; target=&quot;_blank&quot;>1427783270</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>36.82572747314357</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_3306b88211ccb9990e4397fcbe6c5b85.setContent(html_9a35a49034efc3a89721f64db7a11281);
            
        

        poly_line_cc7477ac1444f326e8eb5d5787d51e01.bindPopup(popup_3306b88211ccb9990e4397fcbe6c5b85)
        ;

        
    
    
            var poly_line_872119d0e46813a7ec8f778c850784b7 = L.polyline(
                [[41.9102794, -87.6608328], [41.910276, -87.6610096]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d2de4afbba3b4b39281f726a2e744207 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_051ee22635489735c215b7b97dd2c913 = $(`<div id=&quot;html_051ee22635489735c215b7b97dd2c913&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493121375 → 2281979721 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1427783270&quot; target=&quot;_blank&quot;>1427783270</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>14.63516578279457</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_d2de4afbba3b4b39281f726a2e744207.setContent(html_051ee22635489735c215b7b97dd2c913);
            
        

        poly_line_872119d0e46813a7ec8f778c850784b7.bindPopup(popup_d2de4afbba3b4b39281f726a2e744207)
        ;

        
    
    
            var poly_line_cf171646cbf1a49c73686eae19b8247a = L.polyline(
                [[41.9102794, -87.6608328], [41.9106474, -87.6608511], [41.9107376, -87.6608556]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a4ca6e448601a7daad6f97a17d255c56 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c5c08863b6b409a778f580d59bb6d7ef = $(`<div id=&quot;html_c5c08863b6b409a778f580d59bb6d7ef&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493121375 → 12195807196 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571596004&quot; target=&quot;_blank&quot;>571596004</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>50.9845085210806</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_a4ca6e448601a7daad6f97a17d255c56.setContent(html_c5c08863b6b409a778f580d59bb6d7ef);
            
        

        poly_line_cf171646cbf1a49c73686eae19b8247a.bindPopup(popup_a4ca6e448601a7daad6f97a17d255c56)
        ;

        
    
    
            var poly_line_5483b8563896c9a84735f1a37c1ac286 = L.polyline(
                [[41.9102794, -87.6608328], [41.9102819, -87.6605004], [41.9102824, -87.660448], [41.9102823, -87.6603878]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2cd1826cea34d34a5008a19ea14d124d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2781f4d89c9f1ecc9b55880e295d8dab = $(`<div id=&quot;html_2781f4d89c9f1ecc9b55880e295d8dab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493121375 → 5493121374 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1427783270&quot; target=&quot;_blank&quot;>1427783270</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>36.82572747314357</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_2cd1826cea34d34a5008a19ea14d124d.setContent(html_2781f4d89c9f1ecc9b55880e295d8dab);
            
        

        poly_line_5483b8563896c9a84735f1a37c1ac286.bindPopup(popup_2cd1826cea34d34a5008a19ea14d124d)
        ;

        
    
    
            var poly_line_905fe2aa1ecf4d14a6def9a86eacc08c = L.polyline(
                [[41.9057277, -87.6617387], [41.9057286, -87.6614517]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#911eb4&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#911eb4&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6196e169964b5588a98c4b37233c64a9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e01e890ab5e3cb099895e9182fee3708 = $(`<div id=&quot;html_e01e890ab5e3cb099895e9182fee3708&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493211360 → 5493211364 (key 0)<br>                 <b>Component</b> 4<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571608504&quot; target=&quot;_blank&quot;>571608504</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>23.75128620243803</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_6196e169964b5588a98c4b37233c64a9.setContent(html_e01e890ab5e3cb099895e9182fee3708);
            
        

        poly_line_905fe2aa1ecf4d14a6def9a86eacc08c.bindPopup(popup_6196e169964b5588a98c4b37233c64a9)
        ;

        
    
    
            var poly_line_136ef125476b356968525e221083845d = L.polyline(
                [[41.9057286, -87.6614517], [41.905531, -87.6614222], [41.9053982, -87.6614182], [41.9053878, -87.6614296], [41.9053172, -87.6615073], [41.9051855, -87.6615745], [41.9049054, -87.6615658]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#911eb4&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#911eb4&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d1f985c55d12072e9c37ae6dc5ef731d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d2d1060428c112b31e3662f00935292f = $(`<div id=&quot;html_d2d1060428c112b31e3662f00935292f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493211364 → 369880945 (key 0)<br>                 <b>Component</b> 4<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24083880&quot; target=&quot;_blank&quot;>24083880</a>, <a href=&quot;https://www.openstreetmap.org/way/571608505&quot; target=&quot;_blank&quot;>571608505</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>95.33678661187713</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Ada Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr>             </table>         </div>         </div>`)[0];
                popup_d1f985c55d12072e9c37ae6dc5ef731d.setContent(html_d2d1060428c112b31e3662f00935292f);
            
        

        poly_line_136ef125476b356968525e221083845d.bindPopup(popup_d1f985c55d12072e9c37ae6dc5ef731d)
        ;

        
    
    
            var poly_line_46b9f94fcf7820bc7b8e31c675381a7f = L.polyline(
                [[41.9057286, -87.6614517], [41.9057995, -87.6614638], [41.9058254, -87.6615147], [41.9058174, -87.6616864], [41.9057277, -87.6617387]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#911eb4&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#911eb4&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_15524a0141e924f7e60a468952142619 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_414121ee27ffe7e2c7853af5c0a2ca9e = $(`<div id=&quot;html_414121ee27ffe7e2c7853af5c0a2ca9e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493211364 → 5493211360 (key 0)<br>                 <b>Component</b> 4<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571608506&quot; target=&quot;_blank&quot;>571608506</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>38.15962418799104</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_15524a0141e924f7e60a468952142619.setContent(html_414121ee27ffe7e2c7853af5c0a2ca9e);
            
        

        poly_line_46b9f94fcf7820bc7b8e31c675381a7f.bindPopup(popup_15524a0141e924f7e60a468952142619)
        ;

        
    
    
            var poly_line_260ecfa52b83cd2bba80451554ae5614 = L.polyline(
                [[41.903946, -87.6618179], [41.9040117, -87.6618198]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_13f419f9141bc1b71b57eac840b0d12c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_414fa913cfc70c6381e69862c09392e7 = $(`<div id=&quot;html_414fa913cfc70c6381e69862c09392e7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493211381 → 2565051775 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/540085887&quot; target=&quot;_blank&quot;>540085887</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.307209009125489</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_13f419f9141bc1b71b57eac840b0d12c.setContent(html_414fa913cfc70c6381e69862c09392e7);
            
        

        poly_line_260ecfa52b83cd2bba80451554ae5614.bindPopup(popup_13f419f9141bc1b71b57eac840b0d12c)
        ;

        
    
    
            var poly_line_aa274974cf9f04cf9500c5f2373b0cc2 = L.polyline(
                [[41.903946, -87.6618179], [41.9035673, -87.6618066], [41.9035449, -87.661806], [41.9034315, -87.6618026]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_46b848c7e86f3bc73a472d7b3c9b9f47 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_75432f1c0c6f50ec05a64b94139bc7eb = $(`<div id=&quot;html_75432f1c0c6f50ec05a64b94139bc7eb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493211381 → 2565051770 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/540085887&quot; target=&quot;_blank&quot;>540085887</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>57.22388759201794</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_46b848c7e86f3bc73a472d7b3c9b9f47.setContent(html_75432f1c0c6f50ec05a64b94139bc7eb);
            
        

        poly_line_aa274974cf9f04cf9500c5f2373b0cc2.bindPopup(popup_46b848c7e86f3bc73a472d7b3c9b9f47)
        ;

        
    
    
            var poly_line_8822b2f5b49a049faece3049c6fb56e6 = L.polyline(
                [[41.9051118, -87.6597445], [41.9050927, -87.6601451]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e14db2c86f7e7be3f13ac9ce184cf9b7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_dfc3b86327fa551817817f06b65aa350 = $(`<div id=&quot;html_dfc3b86327fa551817817f06b65aa350&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493211391 → 5493211392 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571608517&quot; target=&quot;_blank&quot;>571608517</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>33.220481802679615</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_e14db2c86f7e7be3f13ac9ce184cf9b7.setContent(html_dfc3b86327fa551817817f06b65aa350);
            
        

        poly_line_8822b2f5b49a049faece3049c6fb56e6.bindPopup(popup_e14db2c86f7e7be3f13ac9ce184cf9b7)
        ;

        
    
    
            var poly_line_b1354015634a496d8d182b40cde8d938 = L.polyline(
                [[41.9050927, -87.6601451], [41.9051118, -87.6597445]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c079355861190d0395fa7a99b076ae6e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b5244cd52156b6fafe99040d3b184214 = $(`<div id=&quot;html_b5244cd52156b6fafe99040d3b184214&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493211392 → 5493211391 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571608517&quot; target=&quot;_blank&quot;>571608517</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>33.220481802679615</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_c079355861190d0395fa7a99b076ae6e.setContent(html_b5244cd52156b6fafe99040d3b184214);
            
        

        poly_line_b1354015634a496d8d182b40cde8d938.bindPopup(popup_c079355861190d0395fa7a99b076ae6e)
        ;

        
    
    
            var poly_line_1eea22349cf07200c62c443a39b99b01 = L.polyline(
                [[41.9050927, -87.6601451], [41.904982, -87.6601374], [41.9049213, -87.6600869]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0a41f88ae4f88615b89646feba0449ae = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_06a23df1b40e7b31d9a2f6108f5e8665 = $(`<div id=&quot;html_06a23df1b40e7b31d9a2f6108f5e8665&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493211392 → 5493211395 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316823999&quot; target=&quot;_blank&quot;>1316823999</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.264444858547126</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_0a41f88ae4f88615b89646feba0449ae.setContent(html_06a23df1b40e7b31d9a2f6108f5e8665);
            
        

        poly_line_1eea22349cf07200c62c443a39b99b01.bindPopup(popup_0a41f88ae4f88615b89646feba0449ae)
        ;

        
    
    
            var poly_line_c9060643435b510c2282f73a37d0e13f = L.polyline(
                [[41.9050927, -87.6601451], [41.9051936, -87.6601522], [41.9052345, -87.6601388], [41.9052515, -87.6597539]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9d737a4ed1c04bdca2433f13e3c2d4c2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6b0a626af106e34ae8708a310e1c72bb = $(`<div id=&quot;html_6b0a626af106e34ae8708a310e1c72bb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493211392 → 5493211410 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316823999&quot; target=&quot;_blank&quot;>1316823999</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>47.825293192468024</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_9d737a4ed1c04bdca2433f13e3c2d4c2.setContent(html_6b0a626af106e34ae8708a310e1c72bb);
            
        

        poly_line_c9060643435b510c2282f73a37d0e13f.bindPopup(popup_9d737a4ed1c04bdca2433f13e3c2d4c2)
        ;

        
    
    
            var poly_line_91513d272fe722f095efa68ef0dffe28 = L.polyline(
                [[41.9047764, -87.6597398], [41.9049501, -87.6597579], [41.9049213, -87.6600869]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_cd5c605f53d52fe74cd648b51719c003 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1bc039a5eaed710b7b30bf42fdd6573f = $(`<div id=&quot;html_1bc039a5eaed710b7b30bf42fdd6573f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493211393 → 5493211395 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/621443147&quot; target=&quot;_blank&quot;>621443147</a>, <a href=&quot;https://www.openstreetmap.org/way/571608518&quot; target=&quot;_blank&quot;>571608518</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>46.78744821385018</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_cd5c605f53d52fe74cd648b51719c003.setContent(html_1bc039a5eaed710b7b30bf42fdd6573f);
            
        

        poly_line_91513d272fe722f095efa68ef0dffe28.bindPopup(popup_cd5c605f53d52fe74cd648b51719c003)
        ;

        
    
    
            var poly_line_8b119a9699fb91a468209c529ec0fbbf = L.polyline(
                [[41.9049213, -87.6600869], [41.9049501, -87.6597579], [41.9047764, -87.6597398]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ab3bf44ac19c55d94c5c646fdd8189a5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9f9d4c8dba3a9d82aed315810189d02f = $(`<div id=&quot;html_9f9d4c8dba3a9d82aed315810189d02f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493211395 → 5493211393 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/621443147&quot; target=&quot;_blank&quot;>621443147</a>, <a href=&quot;https://www.openstreetmap.org/way/571608518&quot; target=&quot;_blank&quot;>571608518</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>46.78744821385018</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_ab3bf44ac19c55d94c5c646fdd8189a5.setContent(html_9f9d4c8dba3a9d82aed315810189d02f);
            
        

        poly_line_8b119a9699fb91a468209c529ec0fbbf.bindPopup(popup_ab3bf44ac19c55d94c5c646fdd8189a5)
        ;

        
    
    
            var poly_line_b8e342275d03c3527767726d65166ff7 = L.polyline(
                [[41.9049213, -87.6600869], [41.9048902, -87.660061], [41.9048103, -87.6600623], [41.9047245, -87.6600637], [41.904662, -87.6601628], [41.9038461, -87.6601401], [41.9038002, -87.660124], [41.9037773, -87.6600891], [41.9037383, -87.6599765]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_dd687209057310fa4d383fd5d039ac0e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_739c99c539ebe5301128bef622cb8fe8 = $(`<div id=&quot;html_739c99c539ebe5301128bef622cb8fe8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493211395 → 5493211400 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571608519&quot; target=&quot;_blank&quot;>571608519</a>, <a href=&quot;https://www.openstreetmap.org/way/1316823999&quot; target=&quot;_blank&quot;>1316823999</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>143.39199571763126</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_dd687209057310fa4d383fd5d039ac0e.setContent(html_739c99c539ebe5301128bef622cb8fe8);
            
        

        poly_line_b8e342275d03c3527767726d65166ff7.bindPopup(popup_dd687209057310fa4d383fd5d039ac0e)
        ;

        
    
    
            var poly_line_ed6d3a2a11a0d786adaed8377c1838c6 = L.polyline(
                [[41.9049213, -87.6600869], [41.904982, -87.6601374], [41.9050927, -87.6601451]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3ec44ad20a82a1bd647a139528dc5e1a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e2a7b53ab2cf5e92f2094ee0708df3ec = $(`<div id=&quot;html_e2a7b53ab2cf5e92f2094ee0708df3ec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493211395 → 5493211392 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316823999&quot; target=&quot;_blank&quot;>1316823999</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.264444858547126</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_3ec44ad20a82a1bd647a139528dc5e1a.setContent(html_e2a7b53ab2cf5e92f2094ee0708df3ec);
            
        

        poly_line_ed6d3a2a11a0d786adaed8377c1838c6.bindPopup(popup_3ec44ad20a82a1bd647a139528dc5e1a)
        ;

        
    
    
            var poly_line_e854754817fdf926611902e4bc66bdbb = L.polyline(
                [[41.9037383, -87.6599765], [41.9037508, -87.6593374], [41.9037782, -87.659306], [41.9038614, -87.659116], [41.9039071, -87.6589761], [41.90395, -87.6589318]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_51fe5775e3eceb75398553bcb04444d8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1c03365bfa31229f6d4f0e7b730317f5 = $(`<div id=&quot;html_1c03365bfa31229f6d4f0e7b730317f5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493211400 → 12187280172 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1292541141&quot; target=&quot;_blank&quot;>1292541141</a>, <a href=&quot;https://www.openstreetmap.org/way/571608519&quot; target=&quot;_blank&quot;>571608519</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>93.8181983227947</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_51fe5775e3eceb75398553bcb04444d8.setContent(html_1c03365bfa31229f6d4f0e7b730317f5);
            
        

        poly_line_e854754817fdf926611902e4bc66bdbb.bindPopup(popup_51fe5775e3eceb75398553bcb04444d8)
        ;

        
    
    
            var poly_line_9b783c0b87416b36ddd8d3b84a0c23b0 = L.polyline(
                [[41.9037383, -87.6599765], [41.9037773, -87.6600891], [41.9038002, -87.660124], [41.9038461, -87.6601401], [41.904662, -87.6601628], [41.9047245, -87.6600637], [41.9048103, -87.6600623], [41.9048902, -87.660061], [41.9049213, -87.6600869]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8b0e223b73532ee70ba9e22281ed7f0c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3aa0d0bcc043cacc908327dce6a22111 = $(`<div id=&quot;html_3aa0d0bcc043cacc908327dce6a22111&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493211400 → 5493211395 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316823999&quot; target=&quot;_blank&quot;>1316823999</a>, <a href=&quot;https://www.openstreetmap.org/way/571608519&quot; target=&quot;_blank&quot;>571608519</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>143.3919957176313</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_8b0e223b73532ee70ba9e22281ed7f0c.setContent(html_3aa0d0bcc043cacc908327dce6a22111);
            
        

        poly_line_9b783c0b87416b36ddd8d3b84a0c23b0.bindPopup(popup_8b0e223b73532ee70ba9e22281ed7f0c)
        ;

        
    
    
            var poly_line_6b3700dc3121d5857975a8f101ab5a58 = L.polyline(
                [[41.9037383, -87.6599765], [41.9036174, -87.6599695], [41.9035836, -87.6599676], [41.9034608, -87.6599663]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b9538f52b6a569860eefbc99c0aa7d22 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6b4418412141852ed8bbd8b591f02060 = $(`<div id=&quot;html_6b4418412141852ed8bbd8b591f02060&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493211400 → 5868632532 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1292541157&quot; target=&quot;_blank&quot;>1292541157</a>, <a href=&quot;https://www.openstreetmap.org/way/621238167&quot; target=&quot;_blank&quot;>621238167</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>30.872823686485972</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_b9538f52b6a569860eefbc99c0aa7d22.setContent(html_6b4418412141852ed8bbd8b591f02060);
            
        

        poly_line_6b3700dc3121d5857975a8f101ab5a58.bindPopup(popup_b9538f52b6a569860eefbc99c0aa7d22)
        ;

        
    
    
            var poly_line_4d11fc249732735dba8f7ed26db37654 = L.polyline(
                [[41.9052515, -87.6597539], [41.9052345, -87.6601388], [41.9051936, -87.6601522], [41.9050927, -87.6601451]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3aa79a00edd307c0446e2cbe6ba3220f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c4dd741bab5181a555324df79779eef9 = $(`<div id=&quot;html_c4dd741bab5181a555324df79779eef9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493211410 → 5493211392 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316823999&quot; target=&quot;_blank&quot;>1316823999</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>47.825293192468024</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_3aa79a00edd307c0446e2cbe6ba3220f.setContent(html_c4dd741bab5181a555324df79779eef9);
            
        

        poly_line_4d11fc249732735dba8f7ed26db37654.bindPopup(popup_3aa79a00edd307c0446e2cbe6ba3220f)
        ;

        
    
    
            var poly_line_b25904cc47766978548446cf2d94ddef = L.polyline(
                [[41.9088309, -87.6609933], [41.9080009, -87.6604804]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_dedc9b656426ff5d4fe32c98a9618633 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b5a1f70f9101b777ac525f88af1cf1ea = $(`<div id=&quot;html_b5a1f70f9101b777ac525f88af1cf1ea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493211411 → 5493212927 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1124448279&quot; target=&quot;_blank&quot;>1124448279</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>101.58389296707921</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_dedc9b656426ff5d4fe32c98a9618633.setContent(html_b5a1f70f9101b777ac525f88af1cf1ea);
            
        

        poly_line_b25904cc47766978548446cf2d94ddef.bindPopup(popup_dedc9b656426ff5d4fe32c98a9618633)
        ;

        
    
    
            var poly_line_c1f8cc148f4f42e6c4c56d73f5cac5ca = L.polyline(
                [[41.9088309, -87.6609933], [41.9088329, -87.6608792], [41.9088456, -87.6601346], [41.9089957, -87.6601392], [41.9090652, -87.6601414]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e019a1f3549a79189fb304afafb43651 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_406ae9903c0c508651936f4f53d1893a = $(`<div id=&quot;html_406ae9903c0c508651936f4f53d1893a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493211411 → 5493211414 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571608520&quot; target=&quot;_blank&quot;>571608520</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>95.50314840254781</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_e019a1f3549a79189fb304afafb43651.setContent(html_406ae9903c0c508651936f4f53d1893a);
            
        

        poly_line_c1f8cc148f4f42e6c4c56d73f5cac5ca.bindPopup(popup_e019a1f3549a79189fb304afafb43651)
        ;

        
    
    
            var poly_line_53c28dfb15d476f0fc30a446c3117f4a = L.polyline(
                [[41.9088309, -87.6609933], [41.9089925, -87.6611019], [41.9090551, -87.6611404]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4ba0dc9db16dca5589275cef5f082e6f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_979a778b2c5dd2da0f4b53196a1b7ac6 = $(`<div id=&quot;html_979a778b2c5dd2da0f4b53196a1b7ac6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493211411 → 739194076 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1124448279&quot; target=&quot;_blank&quot;>1124448279</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>27.74640903402521</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_4ba0dc9db16dca5589275cef5f082e6f.setContent(html_979a778b2c5dd2da0f4b53196a1b7ac6);
            
        

        poly_line_53c28dfb15d476f0fc30a446c3117f4a.bindPopup(popup_4ba0dc9db16dca5589275cef5f082e6f)
        ;

        
    
    
            var poly_line_0d9f5835eb5f90a27d29db4e722392d0 = L.polyline(
                [[41.9090652, -87.6601414], [41.9090642, -87.6602446], [41.9090632, -87.6603421]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1747632cee8c11d0cb962655cf332bdc = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c5c84f98700965b50029a9dc13574499 = $(`<div id=&quot;html_c5c84f98700965b50029a9dc13574499&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493211414 → 261322937 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24109017&quot; target=&quot;_blank&quot;>24109017</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>16.609823642068058</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Le Moyne Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_1747632cee8c11d0cb962655cf332bdc.setContent(html_c5c84f98700965b50029a9dc13574499);
            
        

        poly_line_0d9f5835eb5f90a27d29db4e722392d0.bindPopup(popup_1747632cee8c11d0cb962655cf332bdc)
        ;

        
    
    
            var poly_line_9187791844753bcf624657d29c1af006 = L.polyline(
                [[41.9090652, -87.6601414], [41.9090673, -87.6599241], [41.9090716, -87.6594923], [41.9090736, -87.6592934], [41.909073, -87.6591846]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5957cf666c8911093e5da8d379588665 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_84ffe14aef053f4e7005a0c106904a3e = $(`<div id=&quot;html_84ffe14aef053f4e7005a0c106904a3e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493211414 → 12195806909 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24109017&quot; target=&quot;_blank&quot;>24109017</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>79.1836053469957</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Le Moyne Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_5957cf666c8911093e5da8d379588665.setContent(html_84ffe14aef053f4e7005a0c106904a3e);
            
        

        poly_line_9187791844753bcf624657d29c1af006.bindPopup(popup_5957cf666c8911093e5da8d379588665)
        ;

        
    
    
            var poly_line_5fe52f26f3d97a5f3df135bfd5e53bf4 = L.polyline(
                [[41.9090652, -87.6601414], [41.9089957, -87.6601392], [41.9088456, -87.6601346], [41.9088329, -87.6608792], [41.9088309, -87.6609933]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b6c7c88c8b6f7f081770926a87386411 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f99f5694d00f502b11c902f745630c2f = $(`<div id=&quot;html_f99f5694d00f502b11c902f745630c2f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493211414 → 5493211411 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571608520&quot; target=&quot;_blank&quot;>571608520</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>95.5031484025478</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_b6c7c88c8b6f7f081770926a87386411.setContent(html_f99f5694d00f502b11c902f745630c2f);
            
        

        poly_line_5fe52f26f3d97a5f3df135bfd5e53bf4.bindPopup(popup_b6c7c88c8b6f7f081770926a87386411)
        ;

        
    
    
            var poly_line_e23a7417a8a41f8d1053e6944a255b20 = L.polyline(
                [[41.9094332, -87.6597696], [41.9094355, -87.659263], [41.9092778, -87.6593166], [41.9092701, -87.6598754]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_dfdedca64abfba72ac0eada8c5374540 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_17094de2acce8383149248360e33a99e = $(`<div id=&quot;html_17094de2acce8383149248360e33a99e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493211415 → 12195806941 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571608521&quot; target=&quot;_blank&quot;>571608521</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>106.26006290182787</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_dfdedca64abfba72ac0eada8c5374540.setContent(html_17094de2acce8383149248360e33a99e);
            
        

        poly_line_e23a7417a8a41f8d1053e6944a255b20.bindPopup(popup_dfdedca64abfba72ac0eada8c5374540)
        ;

        
    
    
            var poly_line_a50456a316524ffdbcdeb68f86f439db = L.polyline(
                [[41.9092648, -87.6603476], [41.9091487, -87.6603444], [41.9090632, -87.6603421]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f9572089207becdb95e44eb3d98a67b3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_62a8c19fd92cd7f011c677feff546cf6 = $(`<div id=&quot;html_62a8c19fd92cd7f011c677feff546cf6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493211419 → 261322937 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/583427311&quot; target=&quot;_blank&quot;>583427311</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.421549421329765</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Throop Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_f9572089207becdb95e44eb3d98a67b3.setContent(html_62a8c19fd92cd7f011c677feff546cf6);
            
        

        poly_line_a50456a316524ffdbcdeb68f86f439db.bindPopup(popup_f9572089207becdb95e44eb3d98a67b3)
        ;

        
    
    
            var poly_line_24273aef98f804183c30dc4b68acd321 = L.polyline(
                [[41.9092648, -87.6603476], [41.9092658, -87.6602516], [41.9092658, -87.6602347], [41.9092701, -87.6598754]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_12b3f17843f34ebfe316b5c9acd3ed63 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_308591b68f22a9b408f702f379ae0842 = $(`<div id=&quot;html_308591b68f22a9b408f702f379ae0842&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493211419 → 12195806941 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317723597&quot; target=&quot;_blank&quot;>1317723597</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>39.080009395886826</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_12b3f17843f34ebfe316b5c9acd3ed63.setContent(html_308591b68f22a9b408f702f379ae0842);
            
        

        poly_line_24273aef98f804183c30dc4b68acd321.bindPopup(popup_12b3f17843f34ebfe316b5c9acd3ed63)
        ;

        
    
    
            var poly_line_d3e36136904c861001d30b6d1cc5cb39 = L.polyline(
                [[41.9082493, -87.659843], [41.9080349, -87.6603942], [41.9080009, -87.6604804]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7b150d0bb04a236ebb6343ab67c7093e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8ec93816507763fa274935b4ea865e98 = $(`<div id=&quot;html_8ec93816507763fa274935b4ea865e98&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493212926 → 5493212927 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571608526&quot; target=&quot;_blank&quot;>571608526</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>59.541275486074525</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_7b150d0bb04a236ebb6343ab67c7093e.setContent(html_8ec93816507763fa274935b4ea865e98);
            
        

        poly_line_d3e36136904c861001d30b6d1cc5cb39.bindPopup(popup_7b150d0bb04a236ebb6343ab67c7093e)
        ;

        
    
    
            var poly_line_663d900c10c2b8d5171159efa85e6cd3 = L.polyline(
                [[41.9080009, -87.6604804], [41.9088309, -87.6609933]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e0f04ec8c85b6698102b473d7cefff4f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f5b459f68aade635244fac1f304fc104 = $(`<div id=&quot;html_f5b459f68aade635244fac1f304fc104&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493212927 → 5493211411 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1124448279&quot; target=&quot;_blank&quot;>1124448279</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>101.58389296707921</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_e0f04ec8c85b6698102b473d7cefff4f.setContent(html_f5b459f68aade635244fac1f304fc104);
            
        

        poly_line_663d900c10c2b8d5171159efa85e6cd3.bindPopup(popup_e0f04ec8c85b6698102b473d7cefff4f)
        ;

        
    
    
            var poly_line_aaebafbd4496ee34aa1c6e31fba10c41 = L.polyline(
                [[41.9080009, -87.6604804], [41.9080349, -87.6603942], [41.9082493, -87.659843]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8d99521719201389541c4d587183dc79 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_548ab1cabe98b0f2838af0f084ccb2fa = $(`<div id=&quot;html_548ab1cabe98b0f2838af0f084ccb2fa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493212927 → 5493212926 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571608526&quot; target=&quot;_blank&quot;>571608526</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>59.541275486074525</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_8d99521719201389541c4d587183dc79.setContent(html_548ab1cabe98b0f2838af0f084ccb2fa);
            
        

        poly_line_aaebafbd4496ee34aa1c6e31fba10c41.bindPopup(popup_8d99521719201389541c4d587183dc79)
        ;

        
    
    
            var poly_line_b815581172bef12e87ac3cc4b3e3671e = L.polyline(
                [[41.9080009, -87.6604804], [41.9072466, -87.6600279], [41.9072214, -87.6600081], [41.9071388, -87.6599435]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ad641eec97c82d11b58ad096c009d674 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_bcf59fc9ef4f36b58a370e494e45629b = $(`<div id=&quot;html_bcf59fc9ef4f36b58a370e494e45629b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493212927 → 734123164 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1124448279&quot; target=&quot;_blank&quot;>1124448279</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>105.7271430303806</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_ad641eec97c82d11b58ad096c009d674.setContent(html_bcf59fc9ef4f36b58a370e494e45629b);
            
        

        poly_line_b815581172bef12e87ac3cc4b3e3671e.bindPopup(popup_ad641eec97c82d11b58ad096c009d674)
        ;

        
    
    
            var poly_line_d9b57b5aa1d8d308a8debe959af748b8 = L.polyline(
                [[41.9101766, -87.6610044], [41.910276, -87.6610096]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_42f494784ed1d7e509c81693d15bb141 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_15626c623b9235603a132cb4119d0f15 = $(`<div id=&quot;html_15626c623b9235603a132cb4119d0f15&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493212928 → 2281979721 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/467501412&quot; target=&quot;_blank&quot;>467501412</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>11.061164336254686</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_42f494784ed1d7e509c81693d15bb141.setContent(html_15626c623b9235603a132cb4119d0f15);
            
        

        poly_line_d9b57b5aa1d8d308a8debe959af748b8.bindPopup(popup_42f494784ed1d7e509c81693d15bb141)
        ;

        
    
    
            var poly_line_ad18291152e99333bcfce39086d27cbf = L.polyline(
                [[41.9101766, -87.6610044], [41.9099654, -87.6609934]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4f649b688a263a641e34986d59137000 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b23bb2c4f85decde9290b62dc7f71dac = $(`<div id=&quot;html_b23bb2c4f85decde9290b62dc7f71dac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493212928 → 600583662 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/467501412&quot; target=&quot;_blank&quot;>467501412</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>23.502035913895185</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_4f649b688a263a641e34986d59137000.setContent(html_b23bb2c4f85decde9290b62dc7f71dac);
            
        

        poly_line_ad18291152e99333bcfce39086d27cbf.bindPopup(popup_4f649b688a263a641e34986d59137000)
        ;

        
    
    
            var poly_line_368a829e942a4d42457f106e5dd57955 = L.polyline(
                [[41.9101366, -87.6617929], [41.9100836, -87.6617619]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e003de4aa9fa1af08f60bc0b772ccf8d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_105127ecfc3f42eb59fc76309d1faf41 = $(`<div id=&quot;html_105127ecfc3f42eb59fc76309d1faf41&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493212930 → 5493212931 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435393424&quot; target=&quot;_blank&quot;>435393424</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>6.427446260862589</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_e003de4aa9fa1af08f60bc0b772ccf8d.setContent(html_105127ecfc3f42eb59fc76309d1faf41);
            
        

        poly_line_368a829e942a4d42457f106e5dd57955.bindPopup(popup_e003de4aa9fa1af08f60bc0b772ccf8d)
        ;

        
    
    
            var poly_line_a0aaf7f5ab6062dc2c08d8445c93bf63 = L.polyline(
                [[41.9101366, -87.6617929], [41.91027, -87.6618799]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_07307f460bf070f4fffface08391f7c9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d14739be9d980813a879bd2803646924 = $(`<div id=&quot;html_d14739be9d980813a879bd2803646924&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493212930 → 13125726373 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1370963164&quot; target=&quot;_blank&quot;>1370963164</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>16.488188910009853</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_07307f460bf070f4fffface08391f7c9.setContent(html_d14739be9d980813a879bd2803646924);
            
        

        poly_line_a0aaf7f5ab6062dc2c08d8445c93bf63.bindPopup(popup_07307f460bf070f4fffface08391f7c9)
        ;

        
    
    
            var poly_line_7c64e31b69f5c8eb2b7e9a6867153815 = L.polyline(
                [[41.9101366, -87.6617929], [41.910162, -87.6616825], [41.9101695, -87.6616354], [41.9101766, -87.6610044]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_29d24c20f221c8955ddfd170ba7629fa = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a0d9037e117e8d6916373dc26d783a68 = $(`<div id=&quot;html_a0d9037e117e8d6916373dc26d783a68&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493212930 → 5493212928 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571608527&quot; target=&quot;_blank&quot;>571608527</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>65.76966519288295</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_29d24c20f221c8955ddfd170ba7629fa.setContent(html_a0d9037e117e8d6916373dc26d783a68);
            
        

        poly_line_7c64e31b69f5c8eb2b7e9a6867153815.bindPopup(popup_29d24c20f221c8955ddfd170ba7629fa)
        ;

        
    
    
            var poly_line_40f00017fe669f7f9d8670784a8e2af1 = L.polyline(
                [[41.9100836, -87.6617619], [41.9099527, -87.6616828]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5cfde29be434bc21e5c6797d56fa6a34 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ee03ebca7fd3de6d0f1f341a86d49b87 = $(`<div id=&quot;html_ee03ebca7fd3de6d0f1f341a86d49b87&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493212931 → 13125726372 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435393424&quot; target=&quot;_blank&quot;>435393424</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>15.95949421432192</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_5cfde29be434bc21e5c6797d56fa6a34.setContent(html_ee03ebca7fd3de6d0f1f341a86d49b87);
            
        

        poly_line_40f00017fe669f7f9d8670784a8e2af1.bindPopup(popup_5cfde29be434bc21e5c6797d56fa6a34)
        ;

        
    
    
            var poly_line_85bfad843d3a8bf42ac86c339c7ad610 = L.polyline(
                [[41.9100836, -87.6617619], [41.9101366, -87.6617929]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_384ea54af3276a4c6e10cbba7bd47822 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0d7d1228ab606818310e0fc0e5baaf96 = $(`<div id=&quot;html_0d7d1228ab606818310e0fc0e5baaf96&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493212931 → 5493212930 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435393424&quot; target=&quot;_blank&quot;>435393424</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>6.427446260862589</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_384ea54af3276a4c6e10cbba7bd47822.setContent(html_0d7d1228ab606818310e0fc0e5baaf96);
            
        

        poly_line_85bfad843d3a8bf42ac86c339c7ad610.bindPopup(popup_384ea54af3276a4c6e10cbba7bd47822)
        ;

        
    
    
            var poly_line_dda09648b71f50fc67d83ff458abcf37 = L.polyline(
                [[41.9099661, -87.6611489], [41.9099654, -87.6609934]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2532ae1e51796a514520246444099ea9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c8b0176f24ea3579d731d9e0df6e90ea = $(`<div id=&quot;html_c8b0176f24ea3579d731d9e0df6e90ea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493212935 → 600583662 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1427783269&quot; target=&quot;_blank&quot;>1427783269</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>12.867995243706618</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_2532ae1e51796a514520246444099ea9.setContent(html_c8b0176f24ea3579d731d9e0df6e90ea);
            
        

        poly_line_dda09648b71f50fc67d83ff458abcf37.bindPopup(popup_2532ae1e51796a514520246444099ea9)
        ;

        
    
    
            var poly_line_54c13862c64232f71064c1a7f00cdd94 = L.polyline(
                [[41.9099661, -87.6611489], [41.9100898, -87.6611509], [41.9100847, -87.6616368], [41.9100836, -87.6617619]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4ba28f56721bf2eca144e426b9d96fc5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_db35f67b4ae17a5fd191e281c2a4732b = $(`<div id=&quot;html_db35f67b4ae17a5fd191e281c2a4732b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493212935 → 5493212931 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571608528&quot; target=&quot;_blank&quot;>571608528</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>64.32123303312655</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_4ba28f56721bf2eca144e426b9d96fc5.setContent(html_db35f67b4ae17a5fd191e281c2a4732b);
            
        

        poly_line_54c13862c64232f71064c1a7f00cdd94.bindPopup(popup_4ba28f56721bf2eca144e426b9d96fc5)
        ;

        
    
    
            var poly_line_6950ac6064ac95156323bab77557151b = L.polyline(
                [[41.9040655, -87.6529654], [41.9045205, -87.6533404]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_35136b8151e21b4e6f9b191c37b01314 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_89d799a86b99b544417cbfc3de20c047 = $(`<div id=&quot;html_89d799a86b99b544417cbfc3de20c047&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493313715 → 261207496 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24088116&quot; target=&quot;_blank&quot;>24088116</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>59.353674421379225</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Hickory Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_35136b8151e21b4e6f9b191c37b01314.setContent(html_89d799a86b99b544417cbfc3de20c047);
            
        

        poly_line_6950ac6064ac95156323bab77557151b.bindPopup(popup_35136b8151e21b4e6f9b191c37b01314)
        ;

        
    
    
            var poly_line_65f70fbd68a4974abf14093c380be2f3 = L.polyline(
                [[41.9040655, -87.6529654], [41.90397, -87.6531679]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9b6172697bab1feaefe5d1e6feb7d485 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ecb09102b79023bee61c5c5ddd6f72dc = $(`<div id=&quot;html_ecb09102b79023bee61c5c5ddd6f72dc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493313715 → 5493313716 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626348&quot; target=&quot;_blank&quot;>571626348</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.839783381862247</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_9b6172697bab1feaefe5d1e6feb7d485.setContent(html_ecb09102b79023bee61c5c5ddd6f72dc);
            
        

        poly_line_65f70fbd68a4974abf14093c380be2f3.bindPopup(popup_9b6172697bab1feaefe5d1e6feb7d485)
        ;

        
    
    
            var poly_line_2e0981f2d908a2d10baa600698464af7 = L.polyline(
                [[41.9040655, -87.6529654], [41.9036617, -87.6526251], [41.9035777, -87.6525516]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_28971020995631ca1f3f1c6a2e7cb901 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2fe6e5eba0d0b5f7d84babd162cf098f = $(`<div id=&quot;html_2fe6e5eba0d0b5f7d84babd162cf098f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493313715 → 102713545 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24088116&quot; target=&quot;_blank&quot;>24088116</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>64.1483830605213</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Hickory Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_28971020995631ca1f3f1c6a2e7cb901.setContent(html_2fe6e5eba0d0b5f7d84babd162cf098f);
            
        

        poly_line_2e0981f2d908a2d10baa600698464af7.bindPopup(popup_28971020995631ca1f3f1c6a2e7cb901)
        ;

        
    
    
            var poly_line_9998b3f6985f781aeac706670602937e = L.polyline(
                [[41.90397, -87.6531679], [41.9040655, -87.6529654]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9290fe07216b006d2652cc6bab4e497d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7cdb024fc7ea9792ab4dd71e1a05df02 = $(`<div id=&quot;html_7cdb024fc7ea9792ab4dd71e1a05df02&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493313716 → 5493313715 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626348&quot; target=&quot;_blank&quot;>571626348</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.839783381862247</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_9290fe07216b006d2652cc6bab4e497d.setContent(html_7cdb024fc7ea9792ab4dd71e1a05df02);
            
        

        poly_line_9998b3f6985f781aeac706670602937e.bindPopup(popup_9290fe07216b006d2652cc6bab4e497d)
        ;

        
    
    
            var poly_line_5eba5bebe463667dc1c9e47ddc60dae1 = L.polyline(
                [[41.90397, -87.6531679], [41.9039474, -87.6531506]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d3eefdb1efec2b3aefc8d4e1dfa5420b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_78c571158cf615a6374176256d217889 = $(`<div id=&quot;html_78c571158cf615a6374176256d217889&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493313716 → 5493313719 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626352&quot; target=&quot;_blank&quot;>571626352</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>2.892239501466414</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_d3eefdb1efec2b3aefc8d4e1dfa5420b.setContent(html_78c571158cf615a6374176256d217889);
            
        

        poly_line_5eba5bebe463667dc1c9e47ddc60dae1.bindPopup(popup_d3eefdb1efec2b3aefc8d4e1dfa5420b)
        ;

        
    
    
            var poly_line_3348a39300f91a4195ab93d5e1dc59c7 = L.polyline(
                [[41.90397, -87.6531679], [41.9041113, -87.6532759]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e4545814c9ae1f9ac65f077a8eaa016a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9d5aa0438cd5bb4a2061450f1ed2fedc = $(`<div id=&quot;html_9d5aa0438cd5bb4a2061450f1ed2fedc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493313716 → 5493313718 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626352&quot; target=&quot;_blank&quot;>571626352</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.07620485677287</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_e4545814c9ae1f9ac65f077a8eaa016a.setContent(html_9d5aa0438cd5bb4a2061450f1ed2fedc);
            
        

        poly_line_3348a39300f91a4195ab93d5e1dc59c7.bindPopup(popup_e4545814c9ae1f9ac65f077a8eaa016a)
        ;

        
    
    
            var poly_line_27413f786d807ab748c7c43508f2bae9 = L.polyline(
                [[41.9037729, -87.6539998], [41.9041113, -87.6532759]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_505ddab9a6937b4a903dc63b9d0e7b11 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_213e85f293f0c282643786354b1a56c3 = $(`<div id=&quot;html_213e85f293f0c282643786354b1a56c3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493313717 → 5493313718 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626349&quot; target=&quot;_blank&quot;>571626349</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>70.74592989458088</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_505ddab9a6937b4a903dc63b9d0e7b11.setContent(html_213e85f293f0c282643786354b1a56c3);
            
        

        poly_line_27413f786d807ab748c7c43508f2bae9.bindPopup(popup_505ddab9a6937b4a903dc63b9d0e7b11)
        ;

        
    
    
            var poly_line_860e79a8ea297dc31469a2e9b99c9e4b = L.polyline(
                [[41.9037729, -87.6539998], [41.9039238, -87.6541207]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9f8d2cf9efc6596a0557d01d61ba89a0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c63c66464bb86b6bb90b26401828be7b = $(`<div id=&quot;html_c63c66464bb86b6bb90b26401828be7b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493313717 → 5493314521 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626351&quot; target=&quot;_blank&quot;>571626351</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.536043342308677</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_9f8d2cf9efc6596a0557d01d61ba89a0.setContent(html_c63c66464bb86b6bb90b26401828be7b);
            
        

        poly_line_860e79a8ea297dc31469a2e9b99c9e4b.bindPopup(popup_9f8d2cf9efc6596a0557d01d61ba89a0)
        ;

        
    
    
            var poly_line_3119eb0d81a0f89207ce184bf7f56cf6 = L.polyline(
                [[41.9037729, -87.6539998], [41.9037357, -87.6539697], [41.9037392, -87.6536322]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a31f67f68d7f2e384315d4cb9d00f85b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0f9cb0366965fb1c1220ea88b94d1f4c = $(`<div id=&quot;html_0f9cb0366965fb1c1220ea88b94d1f4c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493313717 → 5493313720 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626351&quot; target=&quot;_blank&quot;>571626351</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>32.76247405379607</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_a31f67f68d7f2e384315d4cb9d00f85b.setContent(html_0f9cb0366965fb1c1220ea88b94d1f4c);
            
        

        poly_line_3119eb0d81a0f89207ce184bf7f56cf6.bindPopup(popup_a31f67f68d7f2e384315d4cb9d00f85b)
        ;

        
    
    
            var poly_line_a36af8713ad68cf91787f7e429b5c42f = L.polyline(
                [[41.9041113, -87.6532759], [41.9037729, -87.6539998]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8f759ee26e20964d47250aa4214387df = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_961657929f137a2a0eace343044471e3 = $(`<div id=&quot;html_961657929f137a2a0eace343044471e3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493313718 → 5493313717 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626349&quot; target=&quot;_blank&quot;>571626349</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>70.74592989458088</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_8f759ee26e20964d47250aa4214387df.setContent(html_961657929f137a2a0eace343044471e3);
            
        

        poly_line_a36af8713ad68cf91787f7e429b5c42f.bindPopup(popup_8f759ee26e20964d47250aa4214387df)
        ;

        
    
    
            var poly_line_e5cee10576de5d3cd6f73e5bb9c86067 = L.polyline(
                [[41.9041113, -87.6532759], [41.90397, -87.6531679]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3c8de3085ad4d871f09e190b41833afe = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_64970fff1e55a17d4880f121b2e6662d = $(`<div id=&quot;html_64970fff1e55a17d4880f121b2e6662d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493313718 → 5493313716 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626352&quot; target=&quot;_blank&quot;>571626352</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.07620485677287</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_3c8de3085ad4d871f09e190b41833afe.setContent(html_64970fff1e55a17d4880f121b2e6662d);
            
        

        poly_line_e5cee10576de5d3cd6f73e5bb9c86067.bindPopup(popup_3c8de3085ad4d871f09e190b41833afe)
        ;

        
    
    
            var poly_line_2f1e94f7ad87ef9a649de140b614852e = L.polyline(
                [[41.9041113, -87.6532759], [41.9042607, -87.6533905], [41.9039238, -87.6541207]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3c49fefa7ff3464a2f62626286c767bc = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_30d3078b6c8caa6d8c0daa7bee9196de = $(`<div id=&quot;html_30d3078b6c8caa6d8c0daa7bee9196de&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493313718 → 5493314521 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626352&quot; target=&quot;_blank&quot;>571626352</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>90.2290070089794</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_3c49fefa7ff3464a2f62626286c767bc.setContent(html_30d3078b6c8caa6d8c0daa7bee9196de);
            
        

        poly_line_2f1e94f7ad87ef9a649de140b614852e.bindPopup(popup_3c49fefa7ff3464a2f62626286c767bc)
        ;

        
    
    
            var poly_line_e476f0fbc44dfa83f688d149bce29774 = L.polyline(
                [[41.9039474, -87.6531506], [41.9037392, -87.6536322]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_87a99cfda1e700f200744cf5d1116411 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e1639773168599b4ddee60bd07bdf91b = $(`<div id=&quot;html_e1639773168599b4ddee60bd07bdf91b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493313719 → 5493313720 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626350&quot; target=&quot;_blank&quot;>571626350</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>46.09242917633833</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_87a99cfda1e700f200744cf5d1116411.setContent(html_e1639773168599b4ddee60bd07bdf91b);
            
        

        poly_line_e476f0fbc44dfa83f688d149bce29774.bindPopup(popup_87a99cfda1e700f200744cf5d1116411)
        ;

        
    
    
            var poly_line_fe478062c052411e71fd653ef321612c = L.polyline(
                [[41.9039474, -87.6531506], [41.9038629, -87.653086], [41.9037892, -87.6531011], [41.9037436, -87.6532078], [41.9037392, -87.6536322]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_30a4a5eff2a51e79e8d8aaceddb0173b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3bb292f1abe089ab997f97c559033817 = $(`<div id=&quot;html_3bb292f1abe089ab997f97c559033817&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493313719 → 5493313720 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626352&quot; target=&quot;_blank&quot;>571626352</a>, <a href=&quot;https://www.openstreetmap.org/way/571626351&quot; target=&quot;_blank&quot;>571626351</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>64.40919673842144</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_30a4a5eff2a51e79e8d8aaceddb0173b.setContent(html_3bb292f1abe089ab997f97c559033817);
            
        

        poly_line_fe478062c052411e71fd653ef321612c.bindPopup(popup_30a4a5eff2a51e79e8d8aaceddb0173b)
        ;

        
    
    
            var poly_line_3c85455d2a086f27ae790bb3c8f40534 = L.polyline(
                [[41.9039474, -87.6531506], [41.90397, -87.6531679]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_edf75dfabf0368ce8f1da98b94774ff5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_98f00d7aab71319c51b6b55c249d580e = $(`<div id=&quot;html_98f00d7aab71319c51b6b55c249d580e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493313719 → 5493313716 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626352&quot; target=&quot;_blank&quot;>571626352</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>2.892239501466414</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_edf75dfabf0368ce8f1da98b94774ff5.setContent(html_98f00d7aab71319c51b6b55c249d580e);
            
        

        poly_line_3c85455d2a086f27ae790bb3c8f40534.bindPopup(popup_edf75dfabf0368ce8f1da98b94774ff5)
        ;

        
    
    
            var poly_line_4a137cd86b3ed4d0055e6e225e3c80b8 = L.polyline(
                [[41.9037392, -87.6536322], [41.9039474, -87.6531506]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ff0b93c4ce8442b80a452239b9031b17 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ff2e3aed6abb7f6563065724aa8bfa95 = $(`<div id=&quot;html_ff2e3aed6abb7f6563065724aa8bfa95&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493313720 → 5493313719 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626350&quot; target=&quot;_blank&quot;>571626350</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>46.09242917633833</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_ff0b93c4ce8442b80a452239b9031b17.setContent(html_ff2e3aed6abb7f6563065724aa8bfa95);
            
        

        poly_line_4a137cd86b3ed4d0055e6e225e3c80b8.bindPopup(popup_ff0b93c4ce8442b80a452239b9031b17)
        ;

        
    
    
            var poly_line_bc2eba1eeb20d5dd97cd2b6203d772ba = L.polyline(
                [[41.9037392, -87.6536322], [41.9037436, -87.6532078], [41.9037892, -87.6531011], [41.9038629, -87.653086], [41.9039474, -87.6531506]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a27ba2b5f929a34f05eaae6391a42f61 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_85dd9e8738f2db228a25b4a29a5ef814 = $(`<div id=&quot;html_85dd9e8738f2db228a25b4a29a5ef814&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493313720 → 5493313719 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626352&quot; target=&quot;_blank&quot;>571626352</a>, <a href=&quot;https://www.openstreetmap.org/way/571626351&quot; target=&quot;_blank&quot;>571626351</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>64.40919673842143</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_a27ba2b5f929a34f05eaae6391a42f61.setContent(html_85dd9e8738f2db228a25b4a29a5ef814);
            
        

        poly_line_bc2eba1eeb20d5dd97cd2b6203d772ba.bindPopup(popup_a27ba2b5f929a34f05eaae6391a42f61)
        ;

        
    
    
            var poly_line_71ede30075d33af3f60e35f61c33f466 = L.polyline(
                [[41.9037392, -87.6536322], [41.9037357, -87.6539697], [41.9037729, -87.6539998]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c5f7a635faa22a19b4a06b3bf80a2429 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b5a70555526761fa19bdbffcd1e06775 = $(`<div id=&quot;html_b5a70555526761fa19bdbffcd1e06775&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493313720 → 5493313717 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626351&quot; target=&quot;_blank&quot;>571626351</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>32.76247405379607</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_c5f7a635faa22a19b4a06b3bf80a2429.setContent(html_b5a70555526761fa19bdbffcd1e06775);
            
        

        poly_line_71ede30075d33af3f60e35f61c33f466.bindPopup(popup_c5f7a635faa22a19b4a06b3bf80a2429)
        ;

        
    
    
            var poly_line_990c94a036f29707cd9d4e66c3eb5ee1 = L.polyline(
                [[41.9086143, -87.6543908], [41.9084876, -87.6543971], [41.9083336, -87.6542696], [41.9077577, -87.6537928], [41.9076786, -87.6537673], [41.9071896, -87.6533631], [41.9064962, -87.6527899], [41.9060906, -87.6524425]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_de69a0ebe5cb0306f2eb97bdc7d430de = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_df98e0b97034067f6ca50a031ae92b99 = $(`<div id=&quot;html_df98e0b97034067f6ca50a031ae92b99&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314392 → 12183227518 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24077505&quot; target=&quot;_blank&quot;>24077505</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>access</td><td style='padding:2px 6px;'>destination</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>326.3232249653779</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_de69a0ebe5cb0306f2eb97bdc7d430de.setContent(html_df98e0b97034067f6ca50a031ae92b99);
            
        

        poly_line_990c94a036f29707cd9d4e66c3eb5ee1.bindPopup(popup_de69a0ebe5cb0306f2eb97bdc7d430de)
        ;

        
    
    
            var poly_line_ac18a2e9b61d5204328c8afa7c32689b = L.polyline(
                [[41.9076158, -87.6554553], [41.9076187, -87.6553544]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_47396ca659d301a0573ae1a674205ae0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_19a9e330856c7edbe09d3b5d0c18416b = $(`<div id=&quot;html_19a9e330856c7edbe09d3b5d0c18416b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314397 → 12177117216 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626318&quot; target=&quot;_blank&quot;>571626318</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>8.3560940374487</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_47396ca659d301a0573ae1a674205ae0.setContent(html_19a9e330856c7edbe09d3b5d0c18416b);
            
        

        poly_line_ac18a2e9b61d5204328c8afa7c32689b.bindPopup(popup_47396ca659d301a0573ae1a674205ae0)
        ;

        
    
    
            var poly_line_cc714c4d8faf3c120b3b4ceca4c1a50a = L.polyline(
                [[41.9076158, -87.6554553], [41.9077063, -87.6554574], [41.9080803, -87.655466], [41.9081416, -87.6554674], [41.9081682, -87.655468], [41.9082258, -87.655469], [41.9083685, -87.6554714], [41.9086673, -87.6554763], [41.9087303, -87.6554784]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_073f027f8ce7f6ecaf4c2975001c8e44 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1f92acd3d85bd7988b18b3534bb3ea69 = $(`<div id=&quot;html_1f92acd3d85bd7988b18b3534bb3ea69&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314397 → 261282329 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/372671695&quot; target=&quot;_blank&quot;>372671695</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>123.94231843366687</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Cherry Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_073f027f8ce7f6ecaf4c2975001c8e44.setContent(html_1f92acd3d85bd7988b18b3534bb3ea69);
            
        

        poly_line_cc714c4d8faf3c120b3b4ceca4c1a50a.bindPopup(popup_073f027f8ce7f6ecaf4c2975001c8e44)
        ;

        
    
    
            var poly_line_46be0422966ef2895f27e58cda0130bd = L.polyline(
                [[41.9076158, -87.6554553], [41.9075713, -87.6554544], [41.9075117, -87.6554531], [41.9073038, -87.6554489], [41.9071692, -87.6554461]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_44dc3f3b4c7b750c76055d9dc7f606c3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_91d4af35ed8514f0c34013dddcc01cde = $(`<div id=&quot;html_91d4af35ed8514f0c34013dddcc01cde&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314397 → 3762220118 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/372671695&quot; target=&quot;_blank&quot;>372671695</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>49.66556420317086</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Cherry Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_44dc3f3b4c7b750c76055d9dc7f606c3.setContent(html_91d4af35ed8514f0c34013dddcc01cde);
            
        

        poly_line_46be0422966ef2895f27e58cda0130bd.bindPopup(popup_44dc3f3b4c7b750c76055d9dc7f606c3)
        ;

        
    
    
            var poly_line_2b31e8feada9275e2231f332a7c963c8 = L.polyline(
                [[41.9076213, -87.6552641], [41.9076187, -87.6553544]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a5c41ef762f49788ab06b564f2ad0229 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_57995dce727c39891e6db5ee949d007f = $(`<div id=&quot;html_57995dce727c39891e6db5ee949d007f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314398 → 12177117216 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626318&quot; target=&quot;_blank&quot;>571626318</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.478268361030858</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_a5c41ef762f49788ab06b564f2ad0229.setContent(html_57995dce727c39891e6db5ee949d007f);
            
        

        poly_line_2b31e8feada9275e2231f332a7c963c8.bindPopup(popup_a5c41ef762f49788ab06b564f2ad0229)
        ;

        
    
    
            var poly_line_bc53d45dc239d4c23ec0f4dc1b2a2b05 = L.polyline(
                [[41.9076213, -87.6552641], [41.9076532, -87.6552664]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_24d744dee24de354ff69b3d7db9ceb13 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5ac90883ca3b94ad74dad217fdc588b1 = $(`<div id=&quot;html_5ac90883ca3b94ad74dad217fdc588b1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314398 → 5493314406 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626329&quot; target=&quot;_blank&quot;>571626329</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>3.552226033413526</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_24d744dee24de354ff69b3d7db9ceb13.setContent(html_5ac90883ca3b94ad74dad217fdc588b1);
            
        

        poly_line_bc53d45dc239d4c23ec0f4dc1b2a2b05.bindPopup(popup_24d744dee24de354ff69b3d7db9ceb13)
        ;

        
    
    
            var poly_line_fb8739cda8881439c0e1f0379b8be719 = L.polyline(
                [[41.9076213, -87.6552641], [41.9074914, -87.6552586], [41.9074888, -87.6551913], [41.9079822, -87.654152], [41.9081016, -87.6542629]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a194f679a5da08c07165696d3a31ddb4 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_43a34ddbad9457bc4d858727b20b7c96 = $(`<div id=&quot;html_43a34ddbad9457bc4d858727b20b7c96&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314398 → 7505809081 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626329&quot; target=&quot;_blank&quot;>571626329</a>, <a href=&quot;https://www.openstreetmap.org/way/1307412677&quot; target=&quot;_blank&quot;>1307412677</a>, <a href=&quot;https://www.openstreetmap.org/way/802413167&quot; target=&quot;_blank&quot;>802413167</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>138.1830406241843</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_a194f679a5da08c07165696d3a31ddb4.setContent(html_43a34ddbad9457bc4d858727b20b7c96);
            
        

        poly_line_fb8739cda8881439c0e1f0379b8be719.bindPopup(popup_a194f679a5da08c07165696d3a31ddb4)
        ;

        
    
    
            var poly_line_a688ac29af156985491d10179284aca3 = L.polyline(
                [[41.9076532, -87.6552664], [41.9076213, -87.6552641]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7c9c520212e430b18337f48e00fb3543 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8c193c4381dea90d569ddbdbc0de1649 = $(`<div id=&quot;html_8c193c4381dea90d569ddbdbc0de1649&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314406 → 5493314398 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626329&quot; target=&quot;_blank&quot;>571626329</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>3.552226033413526</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_7c9c520212e430b18337f48e00fb3543.setContent(html_8c193c4381dea90d569ddbdbc0de1649);
            
        

        poly_line_a688ac29af156985491d10179284aca3.bindPopup(popup_7c9c520212e430b18337f48e00fb3543)
        ;

        
    
    
            var poly_line_bd499812d907fec6e428163ab6f2f7fa = L.polyline(
                [[41.9076532, -87.6552664], [41.9081016, -87.6542629]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_75cc8c53219f216a85e2f2ae516627f4 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d09f90a0c9c809e4dc41360653a3308f = $(`<div id=&quot;html_d09f90a0c9c809e4dc41360653a3308f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314406 → 7505809081 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/802413166&quot; target=&quot;_blank&quot;>802413166</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>96.8616652817952</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_75cc8c53219f216a85e2f2ae516627f4.setContent(html_d09f90a0c9c809e4dc41360653a3308f);
            
        

        poly_line_bd499812d907fec6e428163ab6f2f7fa.bindPopup(popup_75cc8c53219f216a85e2f2ae516627f4)
        ;

        
    
    
            var poly_line_a6ebdd02d7e951291e45f5e729ef6d29 = L.polyline(
                [[41.9076532, -87.6552664], [41.907708, -87.655268], [41.9078393, -87.6552717]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d5d2e7689298e7e2aed3f1981e1da83e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_47ead446fd2cfe7a11278b8bedd7852b = $(`<div id=&quot;html_47ead446fd2cfe7a11278b8bedd7852b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314406 → 5493314423 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626329&quot; target=&quot;_blank&quot;>571626329</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.698053779957974</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_d5d2e7689298e7e2aed3f1981e1da83e.setContent(html_47ead446fd2cfe7a11278b8bedd7852b);
            
        

        poly_line_a6ebdd02d7e951291e45f5e729ef6d29.bindPopup(popup_d5d2e7689298e7e2aed3f1981e1da83e)
        ;

        
    
    
            var poly_line_ed10364efcc28268dbf827e5a49be339 = L.polyline(
                [[41.9075664, -87.6546111], [41.907417, -87.6544936]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3e72c3ad37348821028058eb7d9c8f1f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d98c3e4394f6ed821526c42e1961b926 = $(`<div id=&quot;html_d98c3e4394f6ed821526c42e1961b926&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314410 → 5493314413 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626324&quot; target=&quot;_blank&quot;>571626324</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.249029520647092</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_3e72c3ad37348821028058eb7d9c8f1f.setContent(html_d98c3e4394f6ed821526c42e1961b926);
            
        

        poly_line_ed10364efcc28268dbf827e5a49be339.bindPopup(popup_3e72c3ad37348821028058eb7d9c8f1f)
        ;

        
    
    
            var poly_line_428700c133a0677f83a5908ca611c918 = L.polyline(
                [[41.9075664, -87.6546111], [41.9077121, -87.6542932]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fbf28f81d7e35c18a8e89a4789dee681 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1c93107f1bb8a44f95c589ab221bd3cc = $(`<div id=&quot;html_1c93107f1bb8a44f95c589ab221bd3cc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314410 → 7505818087 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/802413165&quot; target=&quot;_blank&quot;>802413165</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>30.89593546145658</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_fbf28f81d7e35c18a8e89a4789dee681.setContent(html_1c93107f1bb8a44f95c589ab221bd3cc);
            
        

        poly_line_428700c133a0677f83a5908ca611c918.bindPopup(popup_fbf28f81d7e35c18a8e89a4789dee681)
        ;

        
    
    
            var poly_line_ceb3371846cd14739bfd8c0dd0f18f81 = L.polyline(
                [[41.9075664, -87.6546111], [41.9073068, -87.6551782], [41.9072716, -87.6552519], [41.9071681, -87.6552482]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_230f2a9c31c9c1f06eab08639042da98 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_674d3810c3a8563467f791e59cd6dadc = $(`<div id=&quot;html_674d3810c3a8563467f791e59cd6dadc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314410 → 5493314429 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626323&quot; target=&quot;_blank&quot;>571626323</a>, <a href=&quot;https://www.openstreetmap.org/way/1315559035&quot; target=&quot;_blank&quot;>1315559035</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>73.85661463027344</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_230f2a9c31c9c1f06eab08639042da98.setContent(html_674d3810c3a8563467f791e59cd6dadc);
            
        

        poly_line_ceb3371846cd14739bfd8c0dd0f18f81.bindPopup(popup_230f2a9c31c9c1f06eab08639042da98)
        ;

        
    
    
            var poly_line_a367ad4d72b5ea65ab1e180e71c5ab57 = L.polyline(
                [[41.907417, -87.6544936], [41.9075664, -87.6546111]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ea41143488d2c759adcdcc3b8b9d59aa = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d3c18e0d3290fca54d070be36ed2fda2 = $(`<div id=&quot;html_d3c18e0d3290fca54d070be36ed2fda2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314413 → 5493314410 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626324&quot; target=&quot;_blank&quot;>571626324</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.249029520647092</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_ea41143488d2c759adcdcc3b8b9d59aa.setContent(html_d3c18e0d3290fca54d070be36ed2fda2);
            
        

        poly_line_a367ad4d72b5ea65ab1e180e71c5ab57.bindPopup(popup_ea41143488d2c759adcdcc3b8b9d59aa)
        ;

        
    
    
            var poly_line_e3f0ee1480993a434683c0d6e9bc19c5 = L.polyline(
                [[41.907417, -87.6544936], [41.9071579, -87.6550463], [41.9070929, -87.6551923], [41.9071681, -87.6552482]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b572efdff8925e396fd868ebaf032dfc = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d4c574b3e79276dfc17a16ec6847bf73 = $(`<div id=&quot;html_d4c574b3e79276dfc17a16ec6847bf73&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314413 → 5493314429 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1315559035&quot; target=&quot;_blank&quot;>1315559035</a>, <a href=&quot;https://www.openstreetmap.org/way/571626324&quot; target=&quot;_blank&quot;>571626324</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>77.69113904585663</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_b572efdff8925e396fd868ebaf032dfc.setContent(html_d4c574b3e79276dfc17a16ec6847bf73);
            
        

        poly_line_e3f0ee1480993a434683c0d6e9bc19c5.bindPopup(popup_b572efdff8925e396fd868ebaf032dfc)
        ;

        
    
    
            var poly_line_8876a535b7e7c5ee57b397dab4afa93b = L.polyline(
                [[41.907417, -87.6544936], [41.9071857, -87.6542947], [41.9068401, -87.655045], [41.9068017, -87.6551315], [41.9067729, -87.6551965]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7f1680a39d843d3984809a5574906ed1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5f65c7f82b47a4db7d24b3a4cc0d8a7f = $(`<div id=&quot;html_5f65c7f82b47a4db7d24b3a4cc0d8a7f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314413 → 5493314432 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626330&quot; target=&quot;_blank&quot;>571626330</a>, <a href=&quot;https://www.openstreetmap.org/way/1307412675&quot; target=&quot;_blank&quot;>1307412675</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>118.15169338591545</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr>             </table>         </div>         </div>`)[0];
                popup_7f1680a39d843d3984809a5574906ed1.setContent(html_5f65c7f82b47a4db7d24b3a4cc0d8a7f);
            
        

        poly_line_8876a535b7e7c5ee57b397dab4afa93b.bindPopup(popup_7f1680a39d843d3984809a5574906ed1)
        ;

        
    
    
            var poly_line_5251208bcba57f65bf17078274ef5380 = L.polyline(
                [[41.9084112, -87.6552917], [41.9086823, -87.6546956]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c16db9929571c4ea96493f9b4b3cf314 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f4cebc7ae1a584c830bf70f64a58d8a5 = $(`<div id=&quot;html_f4cebc7ae1a584c830bf70f64a58d8a5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314417 → 5493314418 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626325&quot; target=&quot;_blank&quot;>571626325</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>57.810548180258806</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_c16db9929571c4ea96493f9b4b3cf314.setContent(html_f4cebc7ae1a584c830bf70f64a58d8a5);
            
        

        poly_line_5251208bcba57f65bf17078274ef5380.bindPopup(popup_c16db9929571c4ea96493f9b4b3cf314)
        ;

        
    
    
            var poly_line_cfa1077c8ac498c75b34f432ea527907 = L.polyline(
                [[41.9084112, -87.6552917], [41.9085949, -87.6552982], [41.9086093, -87.655266], [41.9088135, -87.6548103], [41.9086823, -87.6546956]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_79fc11bb22c37254a8e776933107a534 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a884552ce195cdac91726f68c75e8772 = $(`<div id=&quot;html_a884552ce195cdac91726f68c75e8772&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314417 → 5493314418 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626328&quot; target=&quot;_blank&quot;>571626328</a>, <a href=&quot;https://www.openstreetmap.org/way/571626329&quot; target=&quot;_blank&quot;>571626329</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>84.96562944216805</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_79fc11bb22c37254a8e776933107a534.setContent(html_a884552ce195cdac91726f68c75e8772);
            
        

        poly_line_cfa1077c8ac498c75b34f432ea527907.bindPopup(popup_79fc11bb22c37254a8e776933107a534)
        ;

        
    
    
            var poly_line_b7f2c3ea5fb5e5ab60fdc077b3daf711 = L.polyline(
                [[41.9084112, -87.6552917], [41.9083747, -87.6552906], [41.9082291, -87.6552863]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_32b344f6eb7eb5ab4b1dabc7fde4fbe5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_43f607d7e290f35b04947e22245342c7 = $(`<div id=&quot;html_43f607d7e290f35b04947e22245342c7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314417 → 5493314420 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626329&quot; target=&quot;_blank&quot;>571626329</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.253555411443216</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_32b344f6eb7eb5ab4b1dabc7fde4fbe5.setContent(html_43f607d7e290f35b04947e22245342c7);
            
        

        poly_line_b7f2c3ea5fb5e5ab60fdc077b3daf711.bindPopup(popup_32b344f6eb7eb5ab4b1dabc7fde4fbe5)
        ;

        
    
    
            var poly_line_289c860a1474aef8bd61f0fa1c1ff786 = L.polyline(
                [[41.9086823, -87.6546956], [41.9084112, -87.6552917]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6124722632d5dfa1d77ae69c750ef987 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a89bbf3a28f8ac3e1cd36f2dd8b97c7f = $(`<div id=&quot;html_a89bbf3a28f8ac3e1cd36f2dd8b97c7f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314418 → 5493314417 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626325&quot; target=&quot;_blank&quot;>571626325</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>57.810548180258806</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_6124722632d5dfa1d77ae69c750ef987.setContent(html_a89bbf3a28f8ac3e1cd36f2dd8b97c7f);
            
        

        poly_line_289c860a1474aef8bd61f0fa1c1ff786.bindPopup(popup_6124722632d5dfa1d77ae69c750ef987)
        ;

        
    
    
            var poly_line_630dff65bbcfe8218c0174c6165e7732 = L.polyline(
                [[41.9086823, -87.6546956], [41.9088135, -87.6548103], [41.9086093, -87.655266], [41.9085949, -87.6552982], [41.9084112, -87.6552917]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_30d7d5c5425b33ad121352a39307e0d0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3a0b8942f27f3b42c24ecf8f0ba67d42 = $(`<div id=&quot;html_3a0b8942f27f3b42c24ecf8f0ba67d42&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314418 → 5493314417 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626328&quot; target=&quot;_blank&quot;>571626328</a>, <a href=&quot;https://www.openstreetmap.org/way/571626329&quot; target=&quot;_blank&quot;>571626329</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>84.96562944216805</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_30d7d5c5425b33ad121352a39307e0d0.setContent(html_3a0b8942f27f3b42c24ecf8f0ba67d42);
            
        

        poly_line_630dff65bbcfe8218c0174c6165e7732.bindPopup(popup_30d7d5c5425b33ad121352a39307e0d0)
        ;

        
    
    
            var poly_line_b25d21eec506f44a30f1b86e471b24fc = L.polyline(
                [[41.9086823, -87.6546956], [41.9085368, -87.6545787]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_bf915feaa7a8fe730eddb9cfcdd3e5d1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_73735f16144245beafe3547e6b3844b9 = $(`<div id=&quot;html_73735f16144245beafe3547e6b3844b9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314418 → 5493314419 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626328&quot; target=&quot;_blank&quot;>571626328</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.850420827480583</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_bf915feaa7a8fe730eddb9cfcdd3e5d1.setContent(html_73735f16144245beafe3547e6b3844b9);
            
        

        poly_line_b25d21eec506f44a30f1b86e471b24fc.bindPopup(popup_bf915feaa7a8fe730eddb9cfcdd3e5d1)
        ;

        
    
    
            var poly_line_7f47c31c8ede0987eaad6cd986370e6d = L.polyline(
                [[41.9085368, -87.6545787], [41.9082291, -87.6552863]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2e6d8ba78968dec74cf903e1c4e5a91c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4bca4191322209cf9bd6c2fa2fd63ca6 = $(`<div id=&quot;html_4bca4191322209cf9bd6c2fa2fd63ca6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314419 → 5493314420 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626326&quot; target=&quot;_blank&quot;>571626326</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>67.81923506472866</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_2e6d8ba78968dec74cf903e1c4e5a91c.setContent(html_4bca4191322209cf9bd6c2fa2fd63ca6);
            
        

        poly_line_7f47c31c8ede0987eaad6cd986370e6d.bindPopup(popup_2e6d8ba78968dec74cf903e1c4e5a91c)
        ;

        
    
    
            var poly_line_20a14639f7f7036ef5afee7c73534468 = L.polyline(
                [[41.9085368, -87.6545787], [41.9083967, -87.6544521]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5f243d225a64544254ed4afba5f10822 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ba92b08516da636c169d790f67ac35b6 = $(`<div id=&quot;html_ba92b08516da636c169d790f67ac35b6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314419 → 5493314422 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626328&quot; target=&quot;_blank&quot;>571626328</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.773510404010363</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_5f243d225a64544254ed4afba5f10822.setContent(html_ba92b08516da636c169d790f67ac35b6);
            
        

        poly_line_20a14639f7f7036ef5afee7c73534468.bindPopup(popup_5f243d225a64544254ed4afba5f10822)
        ;

        
    
    
            var poly_line_68b2563ed64078477a7bc57afd2bcc3b = L.polyline(
                [[41.9085368, -87.6545787], [41.9086823, -87.6546956]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a77cad581b9c2559a5220882352f5b07 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1bab0e0025f7ad5fc809914db975dc7f = $(`<div id=&quot;html_1bab0e0025f7ad5fc809914db975dc7f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314419 → 5493314418 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626328&quot; target=&quot;_blank&quot;>571626328</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.850420827480583</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_a77cad581b9c2559a5220882352f5b07.setContent(html_1bab0e0025f7ad5fc809914db975dc7f);
            
        

        poly_line_68b2563ed64078477a7bc57afd2bcc3b.bindPopup(popup_a77cad581b9c2559a5220882352f5b07)
        ;

        
    
    
            var poly_line_33d22944d4d0de59c9bb1cf694f75bfc = L.polyline(
                [[41.9082291, -87.6552863], [41.9085368, -87.6545787]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_32467ba21c700be4c77ea7c4b0a6aedc = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_34f71c5687a562f0255acea8e603fc3e = $(`<div id=&quot;html_34f71c5687a562f0255acea8e603fc3e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314420 → 5493314419 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626326&quot; target=&quot;_blank&quot;>571626326</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>67.81923506472866</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_32467ba21c700be4c77ea7c4b0a6aedc.setContent(html_34f71c5687a562f0255acea8e603fc3e);
            
        

        poly_line_33d22944d4d0de59c9bb1cf694f75bfc.bindPopup(popup_32467ba21c700be4c77ea7c4b0a6aedc)
        ;

        
    
    
            var poly_line_e24edeec732da357310183cb501cca03 = L.polyline(
                [[41.9082291, -87.6552863], [41.9083747, -87.6552906], [41.9084112, -87.6552917]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1ebf4df3a7bdbddc44c25f83204e07e3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_cad93262e315bc99002ec3f3182ce1de = $(`<div id=&quot;html_cad93262e315bc99002ec3f3182ce1de&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314420 → 5493314417 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626329&quot; target=&quot;_blank&quot;>571626329</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.253555411443216</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_1ebf4df3a7bdbddc44c25f83204e07e3.setContent(html_cad93262e315bc99002ec3f3182ce1de);
            
        

        poly_line_e24edeec732da357310183cb501cca03.bindPopup(popup_1ebf4df3a7bdbddc44c25f83204e07e3)
        ;

        
    
    
            var poly_line_6797d5ca0f9d91326cf6ee61b6c0db2c = L.polyline(
                [[41.9082291, -87.6552863], [41.9081684, -87.655284], [41.9080373, -87.6552787]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_caeaafd1196c93602496a237f3cb5fc5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3f23e97d6d3bad1d7f53df982f3bc1df = $(`<div id=&quot;html_3f23e97d6d3bad1d7f53df982f3bc1df&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314420 → 5493314421 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626329&quot; target=&quot;_blank&quot;>571626329</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.33649652218965</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_caeaafd1196c93602496a237f3cb5fc5.setContent(html_3f23e97d6d3bad1d7f53df982f3bc1df);
            
        

        poly_line_6797d5ca0f9d91326cf6ee61b6c0db2c.bindPopup(popup_caeaafd1196c93602496a237f3cb5fc5)
        ;

        
    
    
            var poly_line_7950a4973cd1c4f0bcee7bbc27f79762 = L.polyline(
                [[41.9080373, -87.6552787], [41.9083967, -87.6544521]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_da7243fe3d9d944f065e3b33ace0a8d0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2def239c0e7af285c66acec8f31028a7 = $(`<div id=&quot;html_2def239c0e7af285c66acec8f31028a7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314421 → 5493314422 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626327&quot; target=&quot;_blank&quot;>571626327</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>79.2221818718928</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_da7243fe3d9d944f065e3b33ace0a8d0.setContent(html_2def239c0e7af285c66acec8f31028a7);
            
        

        poly_line_7950a4973cd1c4f0bcee7bbc27f79762.bindPopup(popup_da7243fe3d9d944f065e3b33ace0a8d0)
        ;

        
    
    
            var poly_line_72788c62ab8af95af1743640a309eb5c = L.polyline(
                [[41.9080373, -87.6552787], [41.9078393, -87.6552717]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1d3cc6842199759bc6f269e5479b280f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9471fc4202fa4781f0c065ba241f5713 = $(`<div id=&quot;html_9471fc4202fa4781f0c065ba241f5713&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314421 → 5493314423 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626329&quot; target=&quot;_blank&quot;>571626329</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.024245838563864</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_1d3cc6842199759bc6f269e5479b280f.setContent(html_9471fc4202fa4781f0c065ba241f5713);
            
        

        poly_line_72788c62ab8af95af1743640a309eb5c.bindPopup(popup_1d3cc6842199759bc6f269e5479b280f)
        ;

        
    
    
            var poly_line_6f6c3b6a85411fc30ece24a1b8610d1e = L.polyline(
                [[41.9080373, -87.6552787], [41.9081684, -87.655284], [41.9082291, -87.6552863]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5d1815422fdd8da76d9bb444c3acd51a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6ca028e17edd4a7c67f276f754fca68a = $(`<div id=&quot;html_6ca028e17edd4a7c67f276f754fca68a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314421 → 5493314420 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626329&quot; target=&quot;_blank&quot;>571626329</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.33649652218965</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_5d1815422fdd8da76d9bb444c3acd51a.setContent(html_6ca028e17edd4a7c67f276f754fca68a);
            
        

        poly_line_6f6c3b6a85411fc30ece24a1b8610d1e.bindPopup(popup_5d1815422fdd8da76d9bb444c3acd51a)
        ;

        
    
    
            var poly_line_23d2213d0ff1774f9a4a71d90501c8e2 = L.polyline(
                [[41.9083967, -87.6544521], [41.9080373, -87.6552787]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_12650111335d1b46f174828ab7431fcc = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_075101b8de004e242cbdd0becda10f74 = $(`<div id=&quot;html_075101b8de004e242cbdd0becda10f74&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314422 → 5493314421 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626327&quot; target=&quot;_blank&quot;>571626327</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>79.2221818718928</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_12650111335d1b46f174828ab7431fcc.setContent(html_075101b8de004e242cbdd0becda10f74);
            
        

        poly_line_23d2213d0ff1774f9a4a71d90501c8e2.bindPopup(popup_12650111335d1b46f174828ab7431fcc)
        ;

        
    
    
            var poly_line_22a1a4085ebd98577fc2c101e0e98903 = L.polyline(
                [[41.9083967, -87.6544521], [41.9082438, -87.6543761]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c8a02cd00389a75c4ecb209705f222b2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_bda8c1093722d8c8d22d9af2439fe6f9 = $(`<div id=&quot;html_bda8c1093722d8c8d22d9af2439fe6f9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314422 → 5493314424 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626328&quot; target=&quot;_blank&quot;>571626328</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.127690261283853</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_c8a02cd00389a75c4ecb209705f222b2.setContent(html_bda8c1093722d8c8d22d9af2439fe6f9);
            
        

        poly_line_22a1a4085ebd98577fc2c101e0e98903.bindPopup(popup_c8a02cd00389a75c4ecb209705f222b2)
        ;

        
    
    
            var poly_line_ae83ea37aa57d9a13a3c59fe93dfdea2 = L.polyline(
                [[41.9083967, -87.6544521], [41.9085368, -87.6545787]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_078d391dba94579cd025100e243aa3de = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9ce2a483550d6b133a7e39dfa01b68ed = $(`<div id=&quot;html_9ce2a483550d6b133a7e39dfa01b68ed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314422 → 5493314419 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626328&quot; target=&quot;_blank&quot;>571626328</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.773510404010363</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_078d391dba94579cd025100e243aa3de.setContent(html_9ce2a483550d6b133a7e39dfa01b68ed);
            
        

        poly_line_ae83ea37aa57d9a13a3c59fe93dfdea2.bindPopup(popup_078d391dba94579cd025100e243aa3de)
        ;

        
    
    
            var poly_line_e16c4870998127a144749fd92a16ef73 = L.polyline(
                [[41.9078393, -87.6552717], [41.9080373, -87.6552787]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9d884157ec422c7fd51e6f34b2cc2219 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d5ea285282dd9ee4835cdbf9f7942666 = $(`<div id=&quot;html_d5ea285282dd9ee4835cdbf9f7942666&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314423 → 5493314421 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626329&quot; target=&quot;_blank&quot;>571626329</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.024245838563864</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_9d884157ec422c7fd51e6f34b2cc2219.setContent(html_d5ea285282dd9ee4835cdbf9f7942666);
            
        

        poly_line_e16c4870998127a144749fd92a16ef73.bindPopup(popup_9d884157ec422c7fd51e6f34b2cc2219)
        ;

        
    
    
            var poly_line_b6370d38e10fc369fecb54f7f8fc3416 = L.polyline(
                [[41.9078393, -87.6552717], [41.907708, -87.655268], [41.9076532, -87.6552664]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1b9d57f033cc5b30b7a88192145a1653 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d63a2f4f7ec67d2f94c2a1a27f17f638 = $(`<div id=&quot;html_d63a2f4f7ec67d2f94c2a1a27f17f638&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314423 → 5493314406 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626329&quot; target=&quot;_blank&quot;>571626329</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.698053779957974</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_1b9d57f033cc5b30b7a88192145a1653.setContent(html_d63a2f4f7ec67d2f94c2a1a27f17f638);
            
        

        poly_line_b6370d38e10fc369fecb54f7f8fc3416.bindPopup(popup_1b9d57f033cc5b30b7a88192145a1653)
        ;

        
    
    
            var poly_line_47fd59d33e63bc0b0c59a32a8f1d9988 = L.polyline(
                [[41.9078393, -87.6552717], [41.9079705, -87.65497], [41.9082438, -87.6543761]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_cf60871a37990c4ee057f78b94f930f8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_05e15a21cea795d59067125be7b889a5 = $(`<div id=&quot;html_05e15a21cea795d59067125be7b889a5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314423 → 5493314424 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1307412678&quot; target=&quot;_blank&quot;>1307412678</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>86.70047336678418</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_cf60871a37990c4ee057f78b94f930f8.setContent(html_05e15a21cea795d59067125be7b889a5);
            
        

        poly_line_47fd59d33e63bc0b0c59a32a8f1d9988.bindPopup(popup_cf60871a37990c4ee057f78b94f930f8)
        ;

        
    
    
            var poly_line_05ee1ccbbd50afcd24b0af7f0feb8d8b = L.polyline(
                [[41.9082438, -87.6543761], [41.9083967, -87.6544521]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6d9100c3630d7bfabac4b7e5f7b1bbe1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_89a4799c304db19599420beb60aa0d19 = $(`<div id=&quot;html_89a4799c304db19599420beb60aa0d19&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314424 → 5493314422 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626328&quot; target=&quot;_blank&quot;>571626328</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.127690261283853</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_6d9100c3630d7bfabac4b7e5f7b1bbe1.setContent(html_89a4799c304db19599420beb60aa0d19);
            
        

        poly_line_05ee1ccbbd50afcd24b0af7f0feb8d8b.bindPopup(popup_6d9100c3630d7bfabac4b7e5f7b1bbe1)
        ;

        
    
    
            var poly_line_08adc4edd0c47db7530c89fd3471f227 = L.polyline(
                [[41.9082438, -87.6543761], [41.9081016, -87.6542629]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fd2034b56f82b517fefa5c67c986462c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e7b577e1897c619aeb834f8ec779a9ef = $(`<div id=&quot;html_e7b577e1897c619aeb834f8ec779a9ef&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314424 → 7505809081 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1307412677&quot; target=&quot;_blank&quot;>1307412677</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.37853511044234</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_fd2034b56f82b517fefa5c67c986462c.setContent(html_e7b577e1897c619aeb834f8ec779a9ef);
            
        

        poly_line_08adc4edd0c47db7530c89fd3471f227.bindPopup(popup_fd2034b56f82b517fefa5c67c986462c)
        ;

        
    
    
            var poly_line_77a6306dfb803c221918988b7a25d1e5 = L.polyline(
                [[41.9082438, -87.6543761], [41.9079705, -87.65497], [41.9078393, -87.6552717]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c00e86ff0ad623a7c0207278602ceb88 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_06d03e7caa3379faa66ddd0f936e879f = $(`<div id=&quot;html_06d03e7caa3379faa66ddd0f936e879f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314424 → 5493314423 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1307412678&quot; target=&quot;_blank&quot;>1307412678</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>86.70047336678418</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_c00e86ff0ad623a7c0207278602ceb88.setContent(html_06d03e7caa3379faa66ddd0f936e879f);
            
        

        poly_line_77a6306dfb803c221918988b7a25d1e5.bindPopup(popup_c00e86ff0ad623a7c0207278602ceb88)
        ;

        
    
    
            var poly_line_b9eb1084244be12eb491e0baf6489e13 = L.polyline(
                [[41.9071681, -87.6552482], [41.9071579, -87.6553405]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_09884f104dc6a0bb8588f64660f9018a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3e19daacdbadd342982367da48c421c3 = $(`<div id=&quot;html_3e19daacdbadd342982367da48c421c3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314429 → 734235752 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1307412679&quot; target=&quot;_blank&quot;>1307412679</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.721988255699831</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_09884f104dc6a0bb8588f64660f9018a.setContent(html_3e19daacdbadd342982367da48c421c3);
            
        

        poly_line_b9eb1084244be12eb491e0baf6489e13.bindPopup(popup_09884f104dc6a0bb8588f64660f9018a)
        ;

        
    
    
            var poly_line_b935ffb05ca584506e7252d6f51f7615 = L.polyline(
                [[41.9071681, -87.6552482], [41.9072716, -87.6552519], [41.9073068, -87.6551782], [41.9075664, -87.6546111]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3d2216d2089f32e2513e646c6ab8cfed = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a812578dae5a6961f9b17e2d19059dd3 = $(`<div id=&quot;html_a812578dae5a6961f9b17e2d19059dd3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314429 → 5493314410 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626323&quot; target=&quot;_blank&quot;>571626323</a>, <a href=&quot;https://www.openstreetmap.org/way/1315559035&quot; target=&quot;_blank&quot;>1315559035</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>73.85661463027344</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_3d2216d2089f32e2513e646c6ab8cfed.setContent(html_a812578dae5a6961f9b17e2d19059dd3);
            
        

        poly_line_b935ffb05ca584506e7252d6f51f7615.bindPopup(popup_3d2216d2089f32e2513e646c6ab8cfed)
        ;

        
    
    
            var poly_line_f522cae8f40a8471d1f7a77a89a20f08 = L.polyline(
                [[41.9071681, -87.6552482], [41.9070929, -87.6551923], [41.9071579, -87.6550463], [41.907417, -87.6544936]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a38ce47d192c9e09bbd8f2346c0067ef = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_031f6499a819e30109d290be96382a62 = $(`<div id=&quot;html_031f6499a819e30109d290be96382a62&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314429 → 5493314413 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1315559035&quot; target=&quot;_blank&quot;>1315559035</a>, <a href=&quot;https://www.openstreetmap.org/way/571626324&quot; target=&quot;_blank&quot;>571626324</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>77.69113904585664</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_a38ce47d192c9e09bbd8f2346c0067ef.setContent(html_031f6499a819e30109d290be96382a62);
            
        

        poly_line_f522cae8f40a8471d1f7a77a89a20f08.bindPopup(popup_a38ce47d192c9e09bbd8f2346c0067ef)
        ;

        
    
    
            var poly_line_157c2fb02db96931c77a12709dcbf842 = L.polyline(
                [[41.9067729, -87.6551965], [41.9064293, -87.6549134]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7cbc457389fdee9c00ea6e62234e9c24 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d99ec1012edd49f9c9c4c3d5b803e072 = $(`<div id=&quot;html_d99ec1012edd49f9c9c4c3d5b803e072&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314432 → 5493314529 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24088116&quot; target=&quot;_blank&quot;>24088116</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>44.817608853300655</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Hickory Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_7cbc457389fdee9c00ea6e62234e9c24.setContent(html_d99ec1012edd49f9c9c4c3d5b803e072);
            
        

        poly_line_157c2fb02db96931c77a12709dcbf842.bindPopup(popup_7cbc457389fdee9c00ea6e62234e9c24)
        ;

        
    
    
            var poly_line_ee2fc61da820b2c2422bc3ac8e82d670 = L.polyline(
                [[41.9067729, -87.6551965], [41.9068017, -87.6551315], [41.9068401, -87.655045], [41.9071857, -87.6542947], [41.907417, -87.6544936]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3c4f692c1c73c0b260568f9475366274 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0e6f3a0204c7f92f53c3e024fc299a29 = $(`<div id=&quot;html_0e6f3a0204c7f92f53c3e024fc299a29&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314432 → 5493314413 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626330&quot; target=&quot;_blank&quot;>571626330</a>, <a href=&quot;https://www.openstreetmap.org/way/1307412675&quot; target=&quot;_blank&quot;>1307412675</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>118.15169338591545</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr>             </table>         </div>         </div>`)[0];
                popup_3c4f692c1c73c0b260568f9475366274.setContent(html_0e6f3a0204c7f92f53c3e024fc299a29);
            
        

        poly_line_ee2fc61da820b2c2422bc3ac8e82d670.bindPopup(popup_3c4f692c1c73c0b260568f9475366274)
        ;

        
    
    
            var poly_line_3940a249d5918577929d8159ddaa2e37 = L.polyline(
                [[41.9067729, -87.6551965], [41.9068859, -87.6553201], [41.9069162, -87.6553765], [41.9069345, -87.6554385]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_489fa23a53338273378bc7c091eeb872 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b2584d8ea3d7d5f28107f46fd8d82b3d = $(`<div id=&quot;html_b2584d8ea3d7d5f28107f46fd8d82b3d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314432 → 9391285666 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1125567628&quot; target=&quot;_blank&quot;>1125567628</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>27.477902392618656</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Hickory Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_489fa23a53338273378bc7c091eeb872.setContent(html_b2584d8ea3d7d5f28107f46fd8d82b3d);
            
        

        poly_line_3940a249d5918577929d8159ddaa2e37.bindPopup(popup_489fa23a53338273378bc7c091eeb872)
        ;

        
    
    
            var poly_line_3076df09555cc6029a21680dc3018254 = L.polyline(
                [[41.9063099, -87.6572947], [41.9063056, -87.6575864]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ea78c868074ab4b812cc317a413caa1c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_305d087b0f6504211343593effb7e332 = $(`<div id=&quot;html_305d087b0f6504211343593effb7e332&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314435 → 5493314436 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626332&quot; target=&quot;_blank&quot;>571626332</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>24.144545909705137</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_ea78c868074ab4b812cc317a413caa1c.setContent(html_305d087b0f6504211343593effb7e332);
            
        

        poly_line_3076df09555cc6029a21680dc3018254.bindPopup(popup_ea78c868074ab4b812cc317a413caa1c)
        ;

        
    
    
            var poly_line_82d453e556a56ea9f09507fad91e68c2 = L.polyline(
                [[41.9063056, -87.6575864], [41.9063099, -87.6572947]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_72f85c7ed1bd89257a5bcf8084fb63bb = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f5e83ab742c21d0c718f14ee5feec8d1 = $(`<div id=&quot;html_f5e83ab742c21d0c718f14ee5feec8d1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314436 → 5493314435 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626332&quot; target=&quot;_blank&quot;>571626332</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>24.144545909705137</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_72f85c7ed1bd89257a5bcf8084fb63bb.setContent(html_f5e83ab742c21d0c718f14ee5feec8d1);
            
        

        poly_line_82d453e556a56ea9f09507fad91e68c2.bindPopup(popup_72f85c7ed1bd89257a5bcf8084fb63bb)
        ;

        
    
    
            var poly_line_4cc18efdb259d61deb90007eb0242ca7 = L.polyline(
                [[41.9063056, -87.6575864], [41.906071, -87.6576129], [41.9059099, -87.6576168], [41.9059111, -87.657309], [41.9058461, -87.6572153], [41.9058505, -87.6567381]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_765e9336a4d7f020c48d182015217b94 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d2d60a479ff143f2624535a16a6c386f = $(`<div id=&quot;html_d2d60a479ff143f2624535a16a6c386f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314436 → 12193660146 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626333&quot; target=&quot;_blank&quot;>571626333</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>119.66216489162076</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_765e9336a4d7f020c48d182015217b94.setContent(html_d2d60a479ff143f2624535a16a6c386f);
            
        

        poly_line_4cc18efdb259d61deb90007eb0242ca7.bindPopup(popup_765e9336a4d7f020c48d182015217b94)
        ;

        
    
    
            var poly_line_8bb9f824bace0039193550e445e48421 = L.polyline(
                [[41.9064799, -87.6566024], [41.9063494, -87.6565956]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_38ccb49b92f6a2a0371c5fe06c1e8614 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_53241f4a9276b46ce9eaf781ecfd635d = $(`<div id=&quot;html_53241f4a9276b46ce9eaf781ecfd635d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314437 → 13091885371 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/683189253&quot; target=&quot;_blank&quot;>683189253</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>14.521865844210346</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_38ccb49b92f6a2a0371c5fe06c1e8614.setContent(html_53241f4a9276b46ce9eaf781ecfd635d);
            
        

        poly_line_8bb9f824bace0039193550e445e48421.bindPopup(popup_38ccb49b92f6a2a0371c5fe06c1e8614)
        ;

        
    
    
            var poly_line_f9430e4c1ac24a34a047ee7c91e8f87d = L.polyline(
                [[41.9064799, -87.6566024], [41.9064812, -87.6566753], [41.90648, -87.6567125], [41.9064794, -87.6567569]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c68b49bce7c3c185efe8075acfab87c1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1596669b9ead17ed72b3e12580c88ffe = $(`<div id=&quot;html_1596669b9ead17ed72b3e12580c88ffe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314437 → 5493314445 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626333&quot; target=&quot;_blank&quot;>571626333</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>12.790934666512262</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_c68b49bce7c3c185efe8075acfab87c1.setContent(html_1596669b9ead17ed72b3e12580c88ffe);
            
        

        poly_line_f9430e4c1ac24a34a047ee7c91e8f87d.bindPopup(popup_c68b49bce7c3c185efe8075acfab87c1)
        ;

        
    
    
            var poly_line_d920f7e007cdeedd60acbcba09997599 = L.polyline(
                [[41.9064799, -87.6566024], [41.9070696, -87.6566146], [41.9071439, -87.6566169]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5e221c229a82356752f743305036a0f3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_78f40ca5b65b0a151cf799d2390b468d = $(`<div id=&quot;html_78f40ca5b65b0a151cf799d2390b468d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314437 → 261193484 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/683189253&quot; target=&quot;_blank&quot;>683189253</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>73.84349983275658</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_5e221c229a82356752f743305036a0f3.setContent(html_78f40ca5b65b0a151cf799d2390b468d);
            
        

        poly_line_d920f7e007cdeedd60acbcba09997599.bindPopup(popup_5e221c229a82356752f743305036a0f3)
        ;

        
    
    
            var poly_line_6894d09578fc8fe102d5c3be8c145a6b = L.polyline(
                [[41.905852, -87.6565728], [41.9059358, -87.6565767]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1785d456d26e262e1c262ce82e084049 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c9af2712130c7d88ba38ecb233a5eb34 = $(`<div id=&quot;html_c9af2712130c7d88ba38ecb233a5eb34&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314438 → 13091885376 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/683189253&quot; target=&quot;_blank&quot;>683189253</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>9.323735804031802</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_1785d456d26e262e1c262ce82e084049.setContent(html_c9af2712130c7d88ba38ecb233a5eb34);
            
        

        poly_line_6894d09578fc8fe102d5c3be8c145a6b.bindPopup(popup_1785d456d26e262e1c262ce82e084049)
        ;

        
    
    
            var poly_line_65b3dceb10c8726940afc2d5f79a2d65 = L.polyline(
                [[41.905852, -87.6565728], [41.9057674, -87.6565685]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0db0ce60710c79e611ff39bddb2a6f66 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_bd1bd9261d3e9e40a64c63fa8f7d57d3 = $(`<div id=&quot;html_bd1bd9261d3e9e40a64c63fa8f7d57d3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314438 → 5493314453 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/683189253&quot; target=&quot;_blank&quot;>683189253</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>9.41383225910282</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_0db0ce60710c79e611ff39bddb2a6f66.setContent(html_bd1bd9261d3e9e40a64c63fa8f7d57d3);
            
        

        poly_line_65b3dceb10c8726940afc2d5f79a2d65.bindPopup(popup_0db0ce60710c79e611ff39bddb2a6f66)
        ;

        
    
    
            var poly_line_63f1ae3ffc0e049a7c0af987981cf3e8 = L.polyline(
                [[41.9064794, -87.6567569], [41.9063029, -87.6567502]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ae5dc86475db50d0679e358148787805 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6a73a7c36acd522e619c2799c6490d31 = $(`<div id=&quot;html_6a73a7c36acd522e619c2799c6490d31&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314445 → 12193660141 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317492098&quot; target=&quot;_blank&quot;>1317492098</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.63376290206101</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_ae5dc86475db50d0679e358148787805.setContent(html_6a73a7c36acd522e619c2799c6490d31);
            
        

        poly_line_63f1ae3ffc0e049a7c0af987981cf3e8.bindPopup(popup_ae5dc86475db50d0679e358148787805)
        ;

        
    
    
            var poly_line_abfc8bb4f6a688f2b08d6ff0d66412a0 = L.polyline(
                [[41.9064794, -87.6567569], [41.9064714, -87.6575648], [41.9063056, -87.6575864]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2a5b606fdbba75268659a6bcdf3972a2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0dff4f4a4a5a4a4579f15d3be196292f = $(`<div id=&quot;html_0dff4f4a4a5a4a4579f15d3be196292f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314445 → 5493314436 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626333&quot; target=&quot;_blank&quot;>571626333</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>85.38659715333846</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_2a5b606fdbba75268659a6bcdf3972a2.setContent(html_0dff4f4a4a5a4a4579f15d3be196292f);
            
        

        poly_line_abfc8bb4f6a688f2b08d6ff0d66412a0.bindPopup(popup_2a5b606fdbba75268659a6bcdf3972a2)
        ;

        
    
    
            var poly_line_6376363fde6c5793ea990a5db50beecb = L.polyline(
                [[41.9049964, -87.6572024], [41.9047656, -87.6571926], [41.9047678, -87.6569664], [41.9049942, -87.6569656], [41.9049964, -87.6572024]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_697712cca6d016e7e27e8c296866b60f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a51362e25a3932fe519f13a02e20ad78 = $(`<div id=&quot;html_a51362e25a3932fe519f13a02e20ad78&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314446 → 5493314446 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626334&quot; target=&quot;_blank&quot;>571626334</a>, <a href=&quot;https://www.openstreetmap.org/way/571626335&quot; target=&quot;_blank&quot;>571626335</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>89.1711177635445</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_697712cca6d016e7e27e8c296866b60f.setContent(html_a51362e25a3932fe519f13a02e20ad78);
            
        

        poly_line_6376363fde6c5793ea990a5db50beecb.bindPopup(popup_697712cca6d016e7e27e8c296866b60f)
        ;

        
    
    
            var poly_line_31333757cc357e2d3121e25affcf6db7 = L.polyline(
                [[41.9049964, -87.6572024], [41.9049942, -87.6569656], [41.9047678, -87.6569664], [41.9047656, -87.6571926], [41.9049964, -87.6572024]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3c3538711c1a6d448bc30be65a737212 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b86f2a2ed9d57b1aa32b4cd7cdc99145 = $(`<div id=&quot;html_b86f2a2ed9d57b1aa32b4cd7cdc99145&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314446 → 5493314446 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626334&quot; target=&quot;_blank&quot;>571626334</a>, <a href=&quot;https://www.openstreetmap.org/way/571626335&quot; target=&quot;_blank&quot;>571626335</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>89.1711177635445</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_3c3538711c1a6d448bc30be65a737212.setContent(html_b86f2a2ed9d57b1aa32b4cd7cdc99145);
            
        

        poly_line_31333757cc357e2d3121e25affcf6db7.bindPopup(popup_3c3538711c1a6d448bc30be65a737212)
        ;

        
    
    
            var poly_line_a29a41aafa96e000d0cd57b71de59641 = L.polyline(
                [[41.9049964, -87.6572024], [41.904997, -87.6572629], [41.9049835, -87.6573424], [41.9046083, -87.6573317]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_911f05397fcf2991da12a3e52e1b4295 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f9e601844912880a66a081ced2849bd5 = $(`<div id=&quot;html_f9e601844912880a66a081ced2849bd5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314446 → 5493314452 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626335&quot; target=&quot;_blank&quot;>571626335</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>53.4853392327678</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_911f05397fcf2991da12a3e52e1b4295.setContent(html_f9e601844912880a66a081ced2849bd5);
            
        

        poly_line_a29a41aafa96e000d0cd57b71de59641.bindPopup(popup_911f05397fcf2991da12a3e52e1b4295)
        ;

        
    
    
            var poly_line_13cb1892c2c9d69f1dc6917236c1fd68 = L.polyline(
                [[41.9046083, -87.6573317], [41.9049835, -87.6573424], [41.904997, -87.6572629], [41.9049964, -87.6572024]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1764a71a82141a067208ec1d621ab2cc = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0ffead7fe4b7e7963c5a7e3ced99b7f4 = $(`<div id=&quot;html_0ffead7fe4b7e7963c5a7e3ced99b7f4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314452 → 5493314446 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626335&quot; target=&quot;_blank&quot;>571626335</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>53.4853392327678</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_1764a71a82141a067208ec1d621ab2cc.setContent(html_0ffead7fe4b7e7963c5a7e3ced99b7f4);
            
        

        poly_line_13cb1892c2c9d69f1dc6917236c1fd68.bindPopup(popup_1764a71a82141a067208ec1d621ab2cc)
        ;

        
    
    
            var poly_line_44b985103e402656b287d112546b7458 = L.polyline(
                [[41.9046083, -87.6573317], [41.9046121, -87.6576297], [41.904649, -87.6577397], [41.9046846, -87.6577835], [41.9047316, -87.6578122], [41.9048167, -87.6578226], [41.9054532, -87.6578297], [41.9056754, -87.6577894], [41.9057309, -87.6577186], [41.9057369, -87.6575002], [41.9057506, -87.6569984], [41.905764, -87.6567641], [41.9057659, -87.656663], [41.9057674, -87.6565685]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f060673a411928fb7c90580129dce636 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fc667d4413d7115cd43d8a2102bc9f80 = $(`<div id=&quot;html_fc667d4413d7115cd43d8a2102bc9f80&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314452 → 5493314453 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626336&quot; target=&quot;_blank&quot;>571626336</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>254.7598537805851</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_f060673a411928fb7c90580129dce636.setContent(html_fc667d4413d7115cd43d8a2102bc9f80);
            
        

        poly_line_44b985103e402656b287d112546b7458.bindPopup(popup_f060673a411928fb7c90580129dce636)
        ;

        
    
    
            var poly_line_b985a3ec6426158ab4a7d9fcc330a0c0 = L.polyline(
                [[41.9046083, -87.6573317], [41.9046128, -87.6566547], [41.9046127, -87.6564844], [41.9046172, -87.6563832]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2e33e2b005d87525fc5c08001f88f198 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b0f6fd41673ae1f40e23dd257e20d877 = $(`<div id=&quot;html_b0f6fd41673ae1f40e23dd257e20d877&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314452 → 5493314460 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626336&quot; target=&quot;_blank&quot;>571626336</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>78.51295383812683</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_2e33e2b005d87525fc5c08001f88f198.setContent(html_b0f6fd41673ae1f40e23dd257e20d877);
            
        

        poly_line_b985a3ec6426158ab4a7d9fcc330a0c0.bindPopup(popup_2e33e2b005d87525fc5c08001f88f198)
        ;

        
    
    
            var poly_line_175f7a529b10f841f7ca59413fada860 = L.polyline(
                [[41.9057674, -87.6565685], [41.905852, -87.6565728]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_55016b2178ace82b91800653f066a06c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c4bd6e1e86c6393c1224a98dd5ac2f07 = $(`<div id=&quot;html_c4bd6e1e86c6393c1224a98dd5ac2f07&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314453 → 5493314438 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/683189253&quot; target=&quot;_blank&quot;>683189253</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>9.41383225910282</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_55016b2178ace82b91800653f066a06c.setContent(html_c4bd6e1e86c6393c1224a98dd5ac2f07);
            
        

        poly_line_175f7a529b10f841f7ca59413fada860.bindPopup(popup_55016b2178ace82b91800653f066a06c)
        ;

        
    
    
            var poly_line_773e718954b8fdc98621e90e770d21a4 = L.polyline(
                [[41.9057674, -87.6565685], [41.9057659, -87.656663], [41.905764, -87.6567641], [41.9057506, -87.6569984], [41.9057369, -87.6575002], [41.9057309, -87.6577186], [41.9056754, -87.6577894], [41.9054532, -87.6578297], [41.9048167, -87.6578226], [41.9047316, -87.6578122], [41.9046846, -87.6577835], [41.904649, -87.6577397], [41.9046121, -87.6576297], [41.9046083, -87.6573317]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2342000067713e513b743247cd887a55 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_bef07721a9ec93dbcd2f178d466d3afd = $(`<div id=&quot;html_bef07721a9ec93dbcd2f178d466d3afd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314453 → 5493314452 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626336&quot; target=&quot;_blank&quot;>571626336</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>254.7598537805851</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_2342000067713e513b743247cd887a55.setContent(html_bef07721a9ec93dbcd2f178d466d3afd);
            
        

        poly_line_773e718954b8fdc98621e90e770d21a4.bindPopup(popup_2342000067713e513b743247cd887a55)
        ;

        
    
    
            var poly_line_d60b7f12ed6ea76bef3d1dac3ef8d642 = L.polyline(
                [[41.9057674, -87.6565685], [41.9047947, -87.6565337], [41.9046172, -87.6563832]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_645384f70d59ace8568bc88559512750 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7a4b25200787c6f1af54cce5b5711185 = $(`<div id=&quot;html_7a4b25200787c6f1af54cce5b5711185&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314453 → 5493314460 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1274943577&quot; target=&quot;_blank&quot;>1274943577</a>, <a href=&quot;https://www.openstreetmap.org/way/683189253&quot; target=&quot;_blank&quot;>683189253</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>131.53621642266566</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_645384f70d59ace8568bc88559512750.setContent(html_7a4b25200787c6f1af54cce5b5711185);
            
        

        poly_line_d60b7f12ed6ea76bef3d1dac3ef8d642.bindPopup(popup_645384f70d59ace8568bc88559512750)
        ;

        
    
    
            var poly_line_4e061c6a09da10eabc938dc055d4b953 = L.polyline(
                [[41.9046172, -87.6563832], [41.9045679, -87.6563384]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_68da511559f3fde33ec32c4ab9777120 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_48e8b9ae7d22918257a384667a0d4ac2 = $(`<div id=&quot;html_48e8b9ae7d22918257a384667a0d4ac2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314460 → 261162253 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1274943577&quot; target=&quot;_blank&quot;>1274943577</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>6.61795696517539</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_68da511559f3fde33ec32c4ab9777120.setContent(html_48e8b9ae7d22918257a384667a0d4ac2);
            
        

        poly_line_4e061c6a09da10eabc938dc055d4b953.bindPopup(popup_68da511559f3fde33ec32c4ab9777120)
        ;

        
    
    
            var poly_line_739fba99e604938b16c8d59be4674e3c = L.polyline(
                [[41.9046172, -87.6563832], [41.9046127, -87.6564844], [41.9046128, -87.6566547], [41.9046083, -87.6573317]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6a87117c032127276d3f2ff4cb903b82 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_057a5ec58d00257ed99390d9cc9b77c2 = $(`<div id=&quot;html_057a5ec58d00257ed99390d9cc9b77c2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314460 → 5493314452 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626336&quot; target=&quot;_blank&quot;>571626336</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>78.51295383812683</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_6a87117c032127276d3f2ff4cb903b82.setContent(html_057a5ec58d00257ed99390d9cc9b77c2);
            
        

        poly_line_739fba99e604938b16c8d59be4674e3c.bindPopup(popup_6a87117c032127276d3f2ff4cb903b82)
        ;

        
    
    
            var poly_line_464a32be2a3d1a0e348692fcecaeba9c = L.polyline(
                [[41.9046172, -87.6563832], [41.9047947, -87.6565337], [41.9057674, -87.6565685]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e51df879e75cdfa00fe6c6cd24a1d2dd = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4f6db0d3ff540cc92a34d02a92c8d19f = $(`<div id=&quot;html_4f6db0d3ff540cc92a34d02a92c8d19f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314460 → 5493314453 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1274943577&quot; target=&quot;_blank&quot;>1274943577</a>, <a href=&quot;https://www.openstreetmap.org/way/683189253&quot; target=&quot;_blank&quot;>683189253</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>131.53621642266566</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_e51df879e75cdfa00fe6c6cd24a1d2dd.setContent(html_4f6db0d3ff540cc92a34d02a92c8d19f);
            
        

        poly_line_464a32be2a3d1a0e348692fcecaeba9c.bindPopup(popup_e51df879e75cdfa00fe6c6cd24a1d2dd)
        ;

        
    
    
            var poly_line_b12651f1dc4dd8e7088e00d1f2165978 = L.polyline(
                [[41.9036175, -87.6565475], [41.9038139, -87.6565476]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3518ff16e1b7bde81b5c07c3b7aa207a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_613525a34220abe74980468db3808fb8 = $(`<div id=&quot;html_613525a34220abe74980468db3808fb8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314462 → 5493314471 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626338&quot; target=&quot;_blank&quot;>571626338</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.838716011161033</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_3518ff16e1b7bde81b5c07c3b7aa207a.setContent(html_613525a34220abe74980468db3808fb8);
            
        

        poly_line_b12651f1dc4dd8e7088e00d1f2165978.bindPopup(popup_3518ff16e1b7bde81b5c07c3b7aa207a)
        ;

        
    
    
            var poly_line_a77116be388eb66c25e75ab94b343571 = L.polyline(
                [[41.903621, -87.6563282], [41.9038136, -87.6563358]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fd66ecaa63f373ed68c9458397b336ef = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_00727c925362832d4bab5ad8ccf6ffa2 = $(`<div id=&quot;html_00727c925362832d4bab5ad8ccf6ffa2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314464 → 5493314465 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626339&quot; target=&quot;_blank&quot;>571626339</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.42540716694918</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_fd66ecaa63f373ed68c9458397b336ef.setContent(html_00727c925362832d4bab5ad8ccf6ffa2);
            
        

        poly_line_a77116be388eb66c25e75ab94b343571.bindPopup(popup_fd66ecaa63f373ed68c9458397b336ef)
        ;

        
    
    
            var poly_line_2c8b5aec9c6eb6a273b9ca55cb4daab0 = L.polyline(
                [[41.9038136, -87.6563358], [41.903621, -87.6563282]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_16e4c2b3f2b7083e15b5b0259ed8242c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_115653074978a105530d2715710a4da5 = $(`<div id=&quot;html_115653074978a105530d2715710a4da5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314465 → 5493314464 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626339&quot; target=&quot;_blank&quot;>571626339</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.42540716694918</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_16e4c2b3f2b7083e15b5b0259ed8242c.setContent(html_115653074978a105530d2715710a4da5);
            
        

        poly_line_2c8b5aec9c6eb6a273b9ca55cb4daab0.bindPopup(popup_16e4c2b3f2b7083e15b5b0259ed8242c)
        ;

        
    
    
            var poly_line_99b94d422b3b66eb4a2721a4eab47868 = L.polyline(
                [[41.9038136, -87.6563358], [41.9038139, -87.6561216]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e14db9c160924ab27b6b9e1ed520e35b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4c27333aa6507dded86326a2e74d4312 = $(`<div id=&quot;html_4c27333aa6507dded86326a2e74d4312&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314465 → 5493314467 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626342&quot; target=&quot;_blank&quot;>571626342</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>17.72697525811432</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_e14db9c160924ab27b6b9e1ed520e35b.setContent(html_4c27333aa6507dded86326a2e74d4312);
            
        

        poly_line_99b94d422b3b66eb4a2721a4eab47868.bindPopup(popup_e14db9c160924ab27b6b9e1ed520e35b)
        ;

        
    
    
            var poly_line_b35a06fd12f42acdeb83b6a2843fe269 = L.polyline(
                [[41.9038136, -87.6563358], [41.9038139, -87.6565476]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_21ad2257df77911ac987fc5909992122 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0ec2d075d02e9a342ef1fb7887b08d1f = $(`<div id=&quot;html_0ec2d075d02e9a342ef1fb7887b08d1f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314465 → 5493314471 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626342&quot; target=&quot;_blank&quot;>571626342</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>17.52835439502887</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_21ad2257df77911ac987fc5909992122.setContent(html_0ec2d075d02e9a342ef1fb7887b08d1f);
            
        

        poly_line_b35a06fd12f42acdeb83b6a2843fe269.bindPopup(popup_21ad2257df77911ac987fc5909992122)
        ;

        
    
    
            var poly_line_0139af2587cb6b4ccff07d70a52e35f0 = L.polyline(
                [[41.9036238, -87.6561106], [41.9038139, -87.6561216]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b078643d4db079622db7ec7a7f7ccb7d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_92974ef81fe95bb6c2248b481f61ff95 = $(`<div id=&quot;html_92974ef81fe95bb6c2248b481f61ff95&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314466 → 5493314467 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626340&quot; target=&quot;_blank&quot;>571626340</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.157779120139388</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_b078643d4db079622db7ec7a7f7ccb7d.setContent(html_92974ef81fe95bb6c2248b481f61ff95);
            
        

        poly_line_0139af2587cb6b4ccff07d70a52e35f0.bindPopup(popup_b078643d4db079622db7ec7a7f7ccb7d)
        ;

        
    
    
            var poly_line_134989a778069150589179ed11f929bb = L.polyline(
                [[41.9038139, -87.6561216], [41.9036238, -87.6561106]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8dc1fd8d496ee8cf0bef423130cb9147 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ddcfa144d69d82077f081f79c51e9f83 = $(`<div id=&quot;html_ddcfa144d69d82077f081f79c51e9f83&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314467 → 5493314466 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626340&quot; target=&quot;_blank&quot;>571626340</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.157779120139388</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_8dc1fd8d496ee8cf0bef423130cb9147.setContent(html_ddcfa144d69d82077f081f79c51e9f83);
            
        

        poly_line_134989a778069150589179ed11f929bb.bindPopup(popup_8dc1fd8d496ee8cf0bef423130cb9147)
        ;

        
    
    
            var poly_line_7797f0d1bfe0e322a1db636fc4e45f53 = L.polyline(
                [[41.9038139, -87.6561216], [41.9038174, -87.6559077]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_625c257039a4e71786a4a7160c956cd3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a8f9eff334ff88c55b02e866ab97bf61 = $(`<div id=&quot;html_a8f9eff334ff88c55b02e866ab97bf61&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314467 → 5493314469 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626342&quot; target=&quot;_blank&quot;>571626342</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>17.70639328805957</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_625c257039a4e71786a4a7160c956cd3.setContent(html_a8f9eff334ff88c55b02e866ab97bf61);
            
        

        poly_line_7797f0d1bfe0e322a1db636fc4e45f53.bindPopup(popup_625c257039a4e71786a4a7160c956cd3)
        ;

        
    
    
            var poly_line_bd0ff281f36388b111c99cf9e7b9ac2a = L.polyline(
                [[41.9038139, -87.6561216], [41.9038136, -87.6563358]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_98a9d0f6d21dee44d6808d45c4816e10 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e625b52be10164c38524bf26bf45d52c = $(`<div id=&quot;html_e625b52be10164c38524bf26bf45d52c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314467 → 5493314465 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626342&quot; target=&quot;_blank&quot;>571626342</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>17.72697525811432</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_98a9d0f6d21dee44d6808d45c4816e10.setContent(html_e625b52be10164c38524bf26bf45d52c);
            
        

        poly_line_bd0ff281f36388b111c99cf9e7b9ac2a.bindPopup(popup_98a9d0f6d21dee44d6808d45c4816e10)
        ;

        
    
    
            var poly_line_16d48f4463cdb4aa228ac50e5736729a = L.polyline(
                [[41.9036289, -87.6558955], [41.9038174, -87.6559077]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c511b7c1c5b660e581d6506bab713fb9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9aab002570e488056d3fe47955367bd0 = $(`<div id=&quot;html_9aab002570e488056d3fe47955367bd0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314468 → 5493314469 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626341&quot; target=&quot;_blank&quot;>571626341</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.984576906982102</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_c511b7c1c5b660e581d6506bab713fb9.setContent(html_9aab002570e488056d3fe47955367bd0);
            
        

        poly_line_16d48f4463cdb4aa228ac50e5736729a.bindPopup(popup_c511b7c1c5b660e581d6506bab713fb9)
        ;

        
    
    
            var poly_line_68c4b2f3089377a2f7a0568318b9970f = L.polyline(
                [[41.9038174, -87.6559077], [41.9036289, -87.6558955]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a7a26484d8010c68bccf20fbc2792348 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_caf911507f019586ea0470e60c856216 = $(`<div id=&quot;html_caf911507f019586ea0470e60c856216&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314469 → 5493314468 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626341&quot; target=&quot;_blank&quot;>571626341</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.984576906982102</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_a7a26484d8010c68bccf20fbc2792348.setContent(html_caf911507f019586ea0470e60c856216);
            
        

        poly_line_68c4b2f3089377a2f7a0568318b9970f.bindPopup(popup_a7a26484d8010c68bccf20fbc2792348)
        ;

        
    
    
            var poly_line_a457a8d3ab4f5ffc4f6a40615b0a0293 = L.polyline(
                [[41.9038174, -87.6559077], [41.9038139, -87.6561216]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_811f73a05fc1c6b58c09ac2025e59295 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1d3bdec7a34878b55e8ccff70e1f2933 = $(`<div id=&quot;html_1d3bdec7a34878b55e8ccff70e1f2933&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314469 → 5493314467 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626342&quot; target=&quot;_blank&quot;>571626342</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>17.70639328805957</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_811f73a05fc1c6b58c09ac2025e59295.setContent(html_1d3bdec7a34878b55e8ccff70e1f2933);
            
        

        poly_line_a457a8d3ab4f5ffc4f6a40615b0a0293.bindPopup(popup_811f73a05fc1c6b58c09ac2025e59295)
        ;

        
    
    
            var poly_line_ca1854ab0d141f3dc4ae38e8e0f18597 = L.polyline(
                [[41.9038174, -87.6559077], [41.9038191, -87.6558159], [41.9038455, -87.655716]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_103ab23c7dc9c55020ed5bf69053f3ef = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7286e2985437c4e3d60a7b6359f58845 = $(`<div id=&quot;html_7286e2985437c4e3d60a7b6359f58845&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314469 → 5493314470 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626342&quot; target=&quot;_blank&quot;>571626342</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>16.372910696484126</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_103ab23c7dc9c55020ed5bf69053f3ef.setContent(html_7286e2985437c4e3d60a7b6359f58845);
            
        

        poly_line_ca1854ab0d141f3dc4ae38e8e0f18597.bindPopup(popup_103ab23c7dc9c55020ed5bf69053f3ef)
        ;

        
    
    
            var poly_line_02ca30c5464106d4a31b82f095313b8f = L.polyline(
                [[41.9038455, -87.655716], [41.9042439, -87.6560594]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b209b6676a0a4560582763eebb287b1e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_85af5927bc9c79331007ac34a86724e1 = $(`<div id=&quot;html_85af5927bc9c79331007ac34a86724e1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314470 → 5493314480 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1274943577&quot; target=&quot;_blank&quot;>1274943577</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>52.63227547485652</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_b209b6676a0a4560582763eebb287b1e.setContent(html_85af5927bc9c79331007ac34a86724e1);
            
        

        poly_line_02ca30c5464106d4a31b82f095313b8f.bindPopup(popup_b209b6676a0a4560582763eebb287b1e)
        ;

        
    
    
            var poly_line_6c13dd39e0a8690dba02710e44f1a43e = L.polyline(
                [[41.9038455, -87.655716], [41.9038191, -87.6558159], [41.9038174, -87.6559077]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b59b201ee329425ca2c451f90a0cccc3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b958db9b1e7ffc2ab568a60d52f068ad = $(`<div id=&quot;html_b958db9b1e7ffc2ab568a60d52f068ad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314470 → 5493314469 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626342&quot; target=&quot;_blank&quot;>571626342</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>16.372910696484126</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_b59b201ee329425ca2c451f90a0cccc3.setContent(html_b958db9b1e7ffc2ab568a60d52f068ad);
            
        

        poly_line_6c13dd39e0a8690dba02710e44f1a43e.bindPopup(popup_b59b201ee329425ca2c451f90a0cccc3)
        ;

        
    
    
            var poly_line_9b28a15fca921b36103d46f3edad38ec = L.polyline(
                [[41.9038455, -87.655716], [41.9036158, -87.6555185], [41.903534, -87.6554481]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_dc0711cabb6a5e4fdc3527f2823ba5eb = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f313773c042ecfe64b6913c158476a8b = $(`<div id=&quot;html_f313773c042ecfe64b6913c158476a8b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314470 → 262368116 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1274943577&quot; target=&quot;_blank&quot;>1274943577</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>41.12541477312992</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_dc0711cabb6a5e4fdc3527f2823ba5eb.setContent(html_f313773c042ecfe64b6913c158476a8b);
            
        

        poly_line_9b28a15fca921b36103d46f3edad38ec.bindPopup(popup_dc0711cabb6a5e4fdc3527f2823ba5eb)
        ;

        
    
    
            var poly_line_7f14b15c2668edfd489cae9ec550e291 = L.polyline(
                [[41.9038139, -87.6565476], [41.9036175, -87.6565475]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b593e47ecea98b23871e8b9eb3e73c4a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_94d007257a20183910796d889ea33f75 = $(`<div id=&quot;html_94d007257a20183910796d889ea33f75&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314471 → 5493314462 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626338&quot; target=&quot;_blank&quot;>571626338</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.838716011161033</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_b593e47ecea98b23871e8b9eb3e73c4a.setContent(html_94d007257a20183910796d889ea33f75);
            
        

        poly_line_7f14b15c2668edfd489cae9ec550e291.bindPopup(popup_b593e47ecea98b23871e8b9eb3e73c4a)
        ;

        
    
    
            var poly_line_0a7c04cacc5e6bcf1e17cb4eaa807303 = L.polyline(
                [[41.9038139, -87.6565476], [41.9038136, -87.6563358]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5dfdf23b5616006286195bc0d0efed61 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f49ba382dece0128147b7a9b8da91c31 = $(`<div id=&quot;html_f49ba382dece0128147b7a9b8da91c31&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314471 → 5493314465 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626342&quot; target=&quot;_blank&quot;>571626342</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>17.52835439502887</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_5dfdf23b5616006286195bc0d0efed61.setContent(html_f49ba382dece0128147b7a9b8da91c31);
            
        

        poly_line_0a7c04cacc5e6bcf1e17cb4eaa807303.bindPopup(popup_5dfdf23b5616006286195bc0d0efed61)
        ;

        
    
    
            var poly_line_4548788482daed5638f59beef60dd776 = L.polyline(
                [[41.9038139, -87.6565476], [41.9038135, -87.6566364]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_096ac946d9a06e3ed8e740a835680b3f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3ee7c93f50e0ec1d39ab2b476708f3cd = $(`<div id=&quot;html_3ee7c93f50e0ec1d39ab2b476708f3cd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314471 → 12193701719 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626342&quot; target=&quot;_blank&quot;>571626342</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.349119735648578</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_096ac946d9a06e3ed8e740a835680b3f.setContent(html_3ee7c93f50e0ec1d39ab2b476708f3cd);
            
        

        poly_line_4548788482daed5638f59beef60dd776.bindPopup(popup_096ac946d9a06e3ed8e740a835680b3f)
        ;

        
    
    
            var poly_line_059823cfb81a528b1719957cb5ff9da6 = L.polyline(
                [[41.903972, -87.6571174], [41.9045, -87.657128]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7ecb2b96b083471693812887462412d6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_92ebaa351c4b14615dec435233b46c44 = $(`<div id=&quot;html_92ebaa351c4b14615dec435233b46c44&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314473 → 5493314474 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317492110&quot; target=&quot;_blank&quot;>1317492110</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>58.7175575208987</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_7ecb2b96b083471693812887462412d6.setContent(html_92ebaa351c4b14615dec435233b46c44);
            
        

        poly_line_059823cfb81a528b1719957cb5ff9da6.bindPopup(popup_7ecb2b96b083471693812887462412d6)
        ;

        
    
    
            var poly_line_00f44c29e7ed2635778e26cef91a9513 = L.polyline(
                [[41.903972, -87.6571174], [41.9039704, -87.6571858], [41.9042505, -87.6573896], [41.904493, -87.6574024], [41.9045, -87.657128]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1298056366b478b6199561469531b75b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_17cd9aaa24b7743081be1baabbc0e520 = $(`<div id=&quot;html_17cd9aaa24b7743081be1baabbc0e520&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314473 → 5493314474 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317315953&quot; target=&quot;_blank&quot;>1317315953</a>, <a href=&quot;https://www.openstreetmap.org/way/571626343&quot; target=&quot;_blank&quot;>571626343</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>90.7904879677541</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_1298056366b478b6199561469531b75b.setContent(html_17cd9aaa24b7743081be1baabbc0e520);
            
        

        poly_line_00f44c29e7ed2635778e26cef91a9513.bindPopup(popup_1298056366b478b6199561469531b75b)
        ;

        
    
    
            var poly_line_d107609c4f1451f1f65c301a09a68016 = L.polyline(
                [[41.903972, -87.6571174], [41.9039686, -87.6568094], [41.9039692, -87.6567412], [41.9038687, -87.6566673], [41.9038135, -87.6566364]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_08876553d2f7bd7d8649614d25a244a9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2d817603a12926b25ef3f1b1fdd9ff2a = $(`<div id=&quot;html_2d817603a12926b25ef3f1b1fdd9ff2a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314473 → 12193701719 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626342&quot; target=&quot;_blank&quot;>571626342</a>, <a href=&quot;https://www.openstreetmap.org/way/1317492110&quot; target=&quot;_blank&quot;>1317492110</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>50.52555676286987</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_08876553d2f7bd7d8649614d25a244a9.setContent(html_2d817603a12926b25ef3f1b1fdd9ff2a);
            
        

        poly_line_d107609c4f1451f1f65c301a09a68016.bindPopup(popup_08876553d2f7bd7d8649614d25a244a9)
        ;

        
    
    
            var poly_line_f13e4d7871cf36e3d1adef42279bb679 = L.polyline(
                [[41.9045, -87.657128], [41.903972, -87.6571174]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d1d9b89baa0981ad5259f6d2fe400530 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1a480f32c446b4fab1affff0b50dd81b = $(`<div id=&quot;html_1a480f32c446b4fab1affff0b50dd81b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314474 → 5493314473 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317492110&quot; target=&quot;_blank&quot;>1317492110</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>58.7175575208987</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_d1d9b89baa0981ad5259f6d2fe400530.setContent(html_1a480f32c446b4fab1affff0b50dd81b);
            
        

        poly_line_f13e4d7871cf36e3d1adef42279bb679.bindPopup(popup_d1d9b89baa0981ad5259f6d2fe400530)
        ;

        
    
    
            var poly_line_2860cef37cc20c1d48751c749807f2a1 = L.polyline(
                [[41.9045, -87.657128], [41.904493, -87.6574024], [41.9042505, -87.6573896], [41.9039704, -87.6571858], [41.903972, -87.6571174]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_98561b44ba0914214e76c1679daf4177 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4d370fa03bca5b06c724dbba0ece456b = $(`<div id=&quot;html_4d370fa03bca5b06c724dbba0ece456b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314474 → 5493314473 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317315953&quot; target=&quot;_blank&quot;>1317315953</a>, <a href=&quot;https://www.openstreetmap.org/way/571626343&quot; target=&quot;_blank&quot;>571626343</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>90.7904879677541</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_98561b44ba0914214e76c1679daf4177.setContent(html_4d370fa03bca5b06c724dbba0ece456b);
            
        

        poly_line_2860cef37cc20c1d48751c749807f2a1.bindPopup(popup_98561b44ba0914214e76c1679daf4177)
        ;

        
    
    
            var poly_line_caa7667e738887f41908a87340a27575 = L.polyline(
                [[41.9045, -87.657128], [41.9045337, -87.6570763], [41.9045391, -87.6564211], [41.9045679, -87.6563384]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_29ae3d51a3121aa77d59465d1fa4a92c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_36e59e6baf393bd4de6fce8294b0b19c = $(`<div id=&quot;html_36e59e6baf393bd4de6fce8294b0b19c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314474 → 261162253 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626344&quot; target=&quot;_blank&quot;>571626344</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>67.47011246299982</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_29ae3d51a3121aa77d59465d1fa4a92c.setContent(html_36e59e6baf393bd4de6fce8294b0b19c);
            
        

        poly_line_caa7667e738887f41908a87340a27575.bindPopup(popup_29ae3d51a3121aa77d59465d1fa4a92c)
        ;

        
    
    
            var poly_line_cb91c8737435f91dd73526787559020d = L.polyline(
                [[41.9045702, -87.6553965], [41.9042873, -87.6559713], [41.9042439, -87.6560594]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_eba52156587ee567e21fd3d917abd404 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d9e71e01650dffefd445a65d0cd9abc5 = $(`<div id=&quot;html_d9e71e01650dffefd445a65d0cd9abc5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314479 → 5493314480 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626345&quot; target=&quot;_blank&quot;>571626345</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>65.77315845317315</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_eba52156587ee567e21fd3d917abd404.setContent(html_d9e71e01650dffefd445a65d0cd9abc5);
            
        

        poly_line_cb91c8737435f91dd73526787559020d.bindPopup(popup_eba52156587ee567e21fd3d917abd404)
        ;

        
    
    
            var poly_line_0a3b2fbb54c04ea5d7e79123fbe1e537 = L.polyline(
                [[41.9042439, -87.6560594], [41.9045679, -87.6563384]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ce00a4ac506fde398b96e3ac58c2f731 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2fe671b92a25c94dbfa14cc677aab414 = $(`<div id=&quot;html_2fe671b92a25c94dbfa14cc677aab414&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314480 → 261162253 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1274943577&quot; target=&quot;_blank&quot;>1274943577</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>42.7911765055748</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_ce00a4ac506fde398b96e3ac58c2f731.setContent(html_2fe671b92a25c94dbfa14cc677aab414);
            
        

        poly_line_0a3b2fbb54c04ea5d7e79123fbe1e537.bindPopup(popup_ce00a4ac506fde398b96e3ac58c2f731)
        ;

        
    
    
            var poly_line_b8d9f3c1a531e1505ca83ce77312474b = L.polyline(
                [[41.9042439, -87.6560594], [41.9038455, -87.655716]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d154012ef43429d87b129f871c83e41e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4ea37df8cbd966a4d276fd070be8ce53 = $(`<div id=&quot;html_4ea37df8cbd966a4d276fd070be8ce53&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314480 → 5493314470 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1274943577&quot; target=&quot;_blank&quot;>1274943577</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>52.63227547485652</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_d154012ef43429d87b129f871c83e41e.setContent(html_4ea37df8cbd966a4d276fd070be8ce53);
            
        

        poly_line_b8d9f3c1a531e1505ca83ce77312474b.bindPopup(popup_d154012ef43429d87b129f871c83e41e)
        ;

        
    
    
            var poly_line_fb7fb891017be70ab097cd94c90a8c13 = L.polyline(
                [[41.9042439, -87.6560594], [41.9042873, -87.6559713], [41.9045702, -87.6553965]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_793a47c1235f13a4ac0bfc85c8451d8e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_73de82c156edfacacad405a35b7f6fae = $(`<div id=&quot;html_73de82c156edfacacad405a35b7f6fae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314480 → 5493314479 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626345&quot; target=&quot;_blank&quot;>571626345</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>65.77315845317315</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_793a47c1235f13a4ac0bfc85c8451d8e.setContent(html_73de82c156edfacacad405a35b7f6fae);
            
        

        poly_line_fb7fb891017be70ab097cd94c90a8c13.bindPopup(popup_793a47c1235f13a4ac0bfc85c8451d8e)
        ;

        
    
    
            var poly_line_c7e782e18caac4df7ab7e3488775a4f0 = L.polyline(
                [[41.9039373, -87.6544389], [41.9038313, -87.6543492]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d752d63107af745cca67eb1235963b33 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_13a5a9d8dc6053ede78bcb61276bab59 = $(`<div id=&quot;html_13a5a9d8dc6053ede78bcb61276bab59&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314481 → 734235544 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59204024&quot; target=&quot;_blank&quot;>59204024</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>13.929592802109156</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Cherry Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_d752d63107af745cca67eb1235963b33.setContent(html_13a5a9d8dc6053ede78bcb61276bab59);
            
        

        poly_line_c7e782e18caac4df7ab7e3488775a4f0.bindPopup(popup_d752d63107af745cca67eb1235963b33)
        ;

        
    
    
            var poly_line_474b9bc6cbf3cd1cfac2b0e48e0e0bab = L.polyline(
                [[41.9039373, -87.6544389], [41.9048941, -87.6552206], [41.9049153, -87.6552361], [41.9049416, -87.6552553], [41.9050525, -87.6553145]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2befcad46c7578849f9cd101efce37ac = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_da3c56af84c3c93733b4d50e8320b8f9 = $(`<div id=&quot;html_da3c56af84c3c93733b4d50e8320b8f9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314481 → 261162252 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59204024&quot; target=&quot;_blank&quot;>59204024</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>143.79690186831445</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Cherry Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_2befcad46c7578849f9cd101efce37ac.setContent(html_da3c56af84c3c93733b4d50e8320b8f9);
            
        

        poly_line_474b9bc6cbf3cd1cfac2b0e48e0e0bab.bindPopup(popup_2befcad46c7578849f9cd101efce37ac)
        ;

        
    
    
            var poly_line_d015c1b318e3f98cd266adf0829caf3f = L.polyline(
                [[41.9039373, -87.6544389], [41.9039082, -87.6545018], [41.9038434, -87.6546514]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fb1b05c75a1ffa9b68d173de58075bd6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_06e38faff30971f50061a9af8faadf78 = $(`<div id=&quot;html_06e38faff30971f50061a9af8faadf78&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314481 → 5493314486 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626347&quot; target=&quot;_blank&quot;>571626347</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.45406773947942</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_fb1b05c75a1ffa9b68d173de58075bd6.setContent(html_06e38faff30971f50061a9af8faadf78);
            
        

        poly_line_d015c1b318e3f98cd266adf0829caf3f.bindPopup(popup_fb1b05c75a1ffa9b68d173de58075bd6)
        ;

        
    
    
            var poly_line_47a50a41471ed1a7a4221db5c96104a7 = L.polyline(
                [[41.9037594, -87.6548451], [41.9038434, -87.6546514]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f97664ee6607be5d4fac606a1a715f5c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1424441e7701ad5200ce215b372cda6b = $(`<div id=&quot;html_1424441e7701ad5200ce215b372cda6b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314482 → 5493314486 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626347&quot; target=&quot;_blank&quot;>571626347</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.553065960861186</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_f97664ee6607be5d4fac606a1a715f5c.setContent(html_1424441e7701ad5200ce215b372cda6b);
            
        

        poly_line_47a50a41471ed1a7a4221db5c96104a7.bindPopup(popup_f97664ee6607be5d4fac606a1a715f5c)
        ;

        
    
    
            var poly_line_81d40e0505a0dd14860e1f44e8491872 = L.polyline(
                [[41.9037594, -87.6548451], [41.9037171, -87.6547145], [41.9037284, -87.6546131], [41.9037461, -87.6545768], [41.9038434, -87.6546514]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b0f027b3941accaa4f090f4f4b857f65 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b019171952603843edfd9a2267878656 = $(`<div id=&quot;html_b019171952603843edfd9a2267878656&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314482 → 5493314486 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626346&quot; target=&quot;_blank&quot;>571626346</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>36.321011210041235</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_b0f027b3941accaa4f090f4f4b857f65.setContent(html_b019171952603843edfd9a2267878656);
            
        

        poly_line_81d40e0505a0dd14860e1f44e8491872.bindPopup(popup_b0f027b3941accaa4f090f4f4b857f65)
        ;

        
    
    
            var poly_line_66073def3a6109abacfa09fdaf1eab40 = L.polyline(
                [[41.9037594, -87.6548451], [41.9036709, -87.6550493], [41.9036216, -87.6550602], [41.9035397, -87.6550797]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5691dc2fe5823c7699cd0d134ecb3292 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4f596119e7ec02d0c027b843d67291cd = $(`<div id=&quot;html_4f596119e7ec02d0c027b843d67291cd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314482 → 5493314487 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626347&quot; target=&quot;_blank&quot;>571626347</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>34.36021396566274</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_5691dc2fe5823c7699cd0d134ecb3292.setContent(html_4f596119e7ec02d0c027b843d67291cd);
            
        

        poly_line_66073def3a6109abacfa09fdaf1eab40.bindPopup(popup_5691dc2fe5823c7699cd0d134ecb3292)
        ;

        
    
    
            var poly_line_0a86ab7d2319fd14c080d1deb945e1a7 = L.polyline(
                [[41.9038434, -87.6546514], [41.9037594, -87.6548451]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f72dfc79f21bc668f7864806b64a1953 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d30ae4219590860dfe0ed581ebe38d90 = $(`<div id=&quot;html_d30ae4219590860dfe0ed581ebe38d90&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314486 → 5493314482 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626347&quot; target=&quot;_blank&quot;>571626347</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.553065960861186</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_f72dfc79f21bc668f7864806b64a1953.setContent(html_d30ae4219590860dfe0ed581ebe38d90);
            
        

        poly_line_0a86ab7d2319fd14c080d1deb945e1a7.bindPopup(popup_f72dfc79f21bc668f7864806b64a1953)
        ;

        
    
    
            var poly_line_a90be9b948c1a728baee1fa9bb21c2aa = L.polyline(
                [[41.9038434, -87.6546514], [41.9037461, -87.6545768], [41.9037284, -87.6546131], [41.9037171, -87.6547145], [41.9037594, -87.6548451]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1484abc766900f40aff7d0561add3167 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9d6b406e18122c6b3f1e7e19d541ebd2 = $(`<div id=&quot;html_9d6b406e18122c6b3f1e7e19d541ebd2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314486 → 5493314482 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626346&quot; target=&quot;_blank&quot;>571626346</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>36.321011210041235</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_1484abc766900f40aff7d0561add3167.setContent(html_9d6b406e18122c6b3f1e7e19d541ebd2);
            
        

        poly_line_a90be9b948c1a728baee1fa9bb21c2aa.bindPopup(popup_1484abc766900f40aff7d0561add3167)
        ;

        
    
    
            var poly_line_0e50c0b5673678877b3d496c5403359a = L.polyline(
                [[41.9038434, -87.6546514], [41.9039082, -87.6545018], [41.9039373, -87.6544389]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d3180d5d704ba210ce3464e801d702d0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_22e6fd6439731d70ec66fe28e6850ad8 = $(`<div id=&quot;html_22e6fd6439731d70ec66fe28e6850ad8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314486 → 5493314481 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626347&quot; target=&quot;_blank&quot;>571626347</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.45406773947942</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_d3180d5d704ba210ce3464e801d702d0.setContent(html_22e6fd6439731d70ec66fe28e6850ad8);
            
        

        poly_line_0e50c0b5673678877b3d496c5403359a.bindPopup(popup_d3180d5d704ba210ce3464e801d702d0)
        ;

        
    
    
            var poly_line_1fb410be084b55f8e3161a148d570e15 = L.polyline(
                [[41.9035397, -87.6550797], [41.9035358, -87.6553319], [41.903534, -87.6554481]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_255bb7668294e033bec2088ce5080664 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9dab1a8b95f39e0b6628fcc132c829c3 = $(`<div id=&quot;html_9dab1a8b95f39e0b6628fcc132c829c3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314487 → 262368116 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/372671688&quot; target=&quot;_blank&quot;>372671688</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>30.495076783697407</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_255bb7668294e033bec2088ce5080664.setContent(html_9dab1a8b95f39e0b6628fcc132c829c3);
            
        

        poly_line_1fb410be084b55f8e3161a148d570e15.bindPopup(popup_255bb7668294e033bec2088ce5080664)
        ;

        
    
    
            var poly_line_a540a162d1d08d85f3116385421f730f = L.polyline(
                [[41.9035397, -87.6550797], [41.9035526, -87.6542361], [41.9035536, -87.6541123]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_413fe9b7f505bd68ded77b358ce7faac = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4d611ceced8f86f498ca3aabc34ccb96 = $(`<div id=&quot;html_4d611ceced8f86f498ca3aabc34ccb96&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314487 → 12177119505 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/372671688&quot; target=&quot;_blank&quot;>372671688</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>80.0765752268343</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_413fe9b7f505bd68ded77b358ce7faac.setContent(html_4d611ceced8f86f498ca3aabc34ccb96);
            
        

        poly_line_a540a162d1d08d85f3116385421f730f.bindPopup(popup_413fe9b7f505bd68ded77b358ce7faac)
        ;

        
    
    
            var poly_line_564f58f0d9130dabd0b44084135ba51a = L.polyline(
                [[41.9035397, -87.6550797], [41.9036216, -87.6550602], [41.9036709, -87.6550493], [41.9037594, -87.6548451]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_edec3baa0d67081be2f76dd56bd97b8f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8fc6c5fedc1a06a39830db17a909d95a = $(`<div id=&quot;html_8fc6c5fedc1a06a39830db17a909d95a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314487 → 5493314482 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626347&quot; target=&quot;_blank&quot;>571626347</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>34.36021396566274</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_edec3baa0d67081be2f76dd56bd97b8f.setContent(html_8fc6c5fedc1a06a39830db17a909d95a);
            
        

        poly_line_564f58f0d9130dabd0b44084135ba51a.bindPopup(popup_edec3baa0d67081be2f76dd56bd97b8f)
        ;

        
    
    
            var poly_line_197e884d5c1f692044e620ddc49214c5 = L.polyline(
                [[41.9020857, -87.6556197], [41.9023053, -87.655152]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_32f2fbb2b8fc6b7d9578edd284126381 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e50acea71ac66e2a4f54f642570a3e86 = $(`<div id=&quot;html_e50acea71ac66e2a4f54f642570a3e86&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314489 → 12192087494 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626389&quot; target=&quot;_blank&quot;>571626389</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>45.76586746007765</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_32f2fbb2b8fc6b7d9578edd284126381.setContent(html_e50acea71ac66e2a4f54f642570a3e86);
            
        

        poly_line_197e884d5c1f692044e620ddc49214c5.bindPopup(popup_32f2fbb2b8fc6b7d9578edd284126381)
        ;

        
    
    
            var poly_line_d12a3c0bc37fa0fbc3e3f53c6ed6b163 = L.polyline(
                [[41.9020857, -87.6556197], [41.9021763, -87.6557733], [41.902373, -87.6559019]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_24bb0098d3b5cd963263b453dfe0a98f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_74edc8df8cfabaee4c20cd78256fea23 = $(`<div id=&quot;html_74edc8df8cfabaee4c20cd78256fea23&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314489 → 5493314612 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626389&quot; target=&quot;_blank&quot;>571626389</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>40.544099800667155</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_24bb0098d3b5cd963263b453dfe0a98f.setContent(html_74edc8df8cfabaee4c20cd78256fea23);
            
        

        poly_line_d12a3c0bc37fa0fbc3e3f53c6ed6b163.bindPopup(popup_24bb0098d3b5cd963263b453dfe0a98f)
        ;

        
    
    
            var poly_line_42bb3106c548c754cdab02814b5b57a6 = L.polyline(
                [[41.9020857, -87.6556197], [41.9020475, -87.6556762], [41.901994, -87.6558584], [41.9019742, -87.6559227], [41.9019678, -87.6559433]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4fdc96bb43382ed982cd7ca4978c07f5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f4b8df8786437935d097989705e52086 = $(`<div id=&quot;html_f4b8df8786437935d097989705e52086&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314489 → 12192087469 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317315917&quot; target=&quot;_blank&quot;>1317315917</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>30.13383782862274</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_4fdc96bb43382ed982cd7ca4978c07f5.setContent(html_f4b8df8786437935d097989705e52086);
            
        

        poly_line_42bb3106c548c754cdab02814b5b57a6.bindPopup(popup_4fdc96bb43382ed982cd7ca4978c07f5)
        ;

        
    
    
            var poly_line_b6ceae5594a3b557b8fffa805dd30fee = L.polyline(
                [[41.9025431, -87.654648], [41.9029209, -87.6549552]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_de17a13bb4cc9a348330e8395bb23f93 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_091a96c8e321ae352b9518ffae7b1553 = $(`<div id=&quot;html_091a96c8e321ae352b9518ffae7b1553&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314490 → 5493314606 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273623183&quot; target=&quot;_blank&quot;>273623183</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>49.103720692592546</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_de17a13bb4cc9a348330e8395bb23f93.setContent(html_091a96c8e321ae352b9518ffae7b1553);
            
        

        poly_line_b6ceae5594a3b557b8fffa805dd30fee.bindPopup(popup_de17a13bb4cc9a348330e8395bb23f93)
        ;

        
    
    
            var poly_line_26aacca7730ab580d67f6a709885e606 = L.polyline(
                [[41.9025431, -87.654648], [41.902463, -87.6545828]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_33c98556bb3c6cd42ab5608780f701a6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_830398f99ba2bcbbe91c6cb751a6ca0f = $(`<div id=&quot;html_830398f99ba2bcbbe91c6cb751a6ca0f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314490 → 6776163347 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273623183&quot; target=&quot;_blank&quot;>273623183</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>10.41376252921904</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_33c98556bb3c6cd42ab5608780f701a6.setContent(html_830398f99ba2bcbbe91c6cb751a6ca0f);
            
        

        poly_line_26aacca7730ab580d67f6a709885e606.bindPopup(popup_33c98556bb3c6cd42ab5608780f701a6)
        ;

        
    
    
            var poly_line_743a119531b0451e001b4b7a0b9c5d2b = L.polyline(
                [[41.9045923, -87.6594144], [41.9046283, -87.6594324]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f920c08d9ec4d77099a2fb492c81d470 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_451b0a4a78300da055cab8a87ebcba11 = $(`<div id=&quot;html_451b0a4a78300da055cab8a87ebcba11&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314491 → 12187280047 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/221317663&quot; target=&quot;_blank&quot;>221317663</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>3</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>4.27120852488817</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_f920c08d9ec4d77099a2fb492c81d470.setContent(html_451b0a4a78300da055cab8a87ebcba11);
            
        

        poly_line_743a119531b0451e001b4b7a0b9c5d2b.bindPopup(popup_f920c08d9ec4d77099a2fb492c81d470)
        ;

        
    
    
            var poly_line_84d2fd91bdca62479274b5315ff06c00 = L.polyline(
                [[41.9045923, -87.6594144], [41.9045421, -87.6593892], [41.9044593, -87.6593377], [41.9043515, -87.6592599]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a3d37c2b60f1295549ca3b33677696de = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ce4fe458f04c267b01a04dab12c1fdcd = $(`<div id=&quot;html_ce4fe458f04c267b01a04dab12c1fdcd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314491 → 1699464698 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/221317663&quot; target=&quot;_blank&quot;>221317663</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>3</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>29.71103445489419</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_a3d37c2b60f1295549ca3b33677696de.setContent(html_ce4fe458f04c267b01a04dab12c1fdcd);
            
        

        poly_line_84d2fd91bdca62479274b5315ff06c00.bindPopup(popup_a3d37c2b60f1295549ca3b33677696de)
        ;

        
    
    
            var poly_line_830923656936d606e3411125dfb950a1 = L.polyline(
                [[41.9046444, -87.6592046], [41.9044283, -87.6590855]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c015fc3a48f0749e12de27c7576e64e2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_23bd4399c595804aced4836596c85a6d = $(`<div id=&quot;html_23bd4399c595804aced4836596c85a6d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314492 → 5493314498 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626394&quot; target=&quot;_blank&quot;>571626394</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>25.972199599448643</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_c015fc3a48f0749e12de27c7576e64e2.setContent(html_23bd4399c595804aced4836596c85a6d);
            
        

        poly_line_830923656936d606e3411125dfb950a1.bindPopup(popup_c015fc3a48f0749e12de27c7576e64e2)
        ;

        
    
    
            var poly_line_38f92d008ffbd4c858752b578e8f0242 = L.polyline(
                [[41.9046444, -87.6592046], [41.904633, -87.6592534], [41.9046198, -87.6593082], [41.9046121, -87.6593333]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9dd7ee3d7f61eef42a15cfa1ffff561d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_303c462f30fe34911f67abae9423c202 = $(`<div id=&quot;html_303c462f30fe34911f67abae9423c202&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314492 → 11967979354 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626390&quot; target=&quot;_blank&quot;>571626390</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>11.246338993177325</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_9dd7ee3d7f61eef42a15cfa1ffff561d.setContent(html_303c462f30fe34911f67abae9423c202);
            
        

        poly_line_38f92d008ffbd4c858752b578e8f0242.bindPopup(popup_9dd7ee3d7f61eef42a15cfa1ffff561d)
        ;

        
    
    
            var poly_line_94765acb306576009fb0b7874a4be311 = L.polyline(
                [[41.9046444, -87.6592046], [41.9048235, -87.6592822], [41.9050398, -87.6593352], [41.9053934, -87.6593911]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9dbde4860cdc2c2162bb46c3a5dc7170 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_79ff5929301b77f71a05ed42dad6fcf0 = $(`<div id=&quot;html_79ff5929301b77f71a05ed42dad6fcf0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314492 → 5493314504 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626394&quot; target=&quot;_blank&quot;>571626394</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>84.96284325059355</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_9dbde4860cdc2c2162bb46c3a5dc7170.setContent(html_79ff5929301b77f71a05ed42dad6fcf0);
            
        

        poly_line_94765acb306576009fb0b7874a4be311.bindPopup(popup_9dbde4860cdc2c2162bb46c3a5dc7170)
        ;

        
    
    
            var poly_line_4d4d70ffa1b34ed015b9e10a44808e1d = L.polyline(
                [[41.9044425, -87.659007], [41.9044283, -87.6590855]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b786736c188547b81812b78dffe4b3d2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_12fe90bcabe68cf8e0a7ccb93d2a103e = $(`<div id=&quot;html_12fe90bcabe68cf8e0a7ccb93d2a103e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314493 → 5493314498 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626394&quot; target=&quot;_blank&quot;>571626394</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>6.685636441733936</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_b786736c188547b81812b78dffe4b3d2.setContent(html_12fe90bcabe68cf8e0a7ccb93d2a103e);
            
        

        poly_line_4d4d70ffa1b34ed015b9e10a44808e1d.bindPopup(popup_b786736c188547b81812b78dffe4b3d2)
        ;

        
    
    
            var poly_line_433c671b25c98e1c655834c0bb9b683c = L.polyline(
                [[41.9044425, -87.659007], [41.9044541, -87.6586637], [41.9041229, -87.6585814], [41.9040989, -87.6586554], [41.9044425, -87.659007]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e104fce725a69ce53a0be7589444b821 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_874d6b250a9e1220a89d84ca9ecf281b = $(`<div id=&quot;html_874d6b250a9e1220a89d84ca9ecf281b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314493 → 5493314493 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626392&quot; target=&quot;_blank&quot;>571626392</a>, <a href=&quot;https://www.openstreetmap.org/way/571626393&quot; target=&quot;_blank&quot;>571626393</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>120.59804832807802</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_e104fce725a69ce53a0be7589444b821.setContent(html_874d6b250a9e1220a89d84ca9ecf281b);
            
        

        poly_line_433c671b25c98e1c655834c0bb9b683c.bindPopup(popup_e104fce725a69ce53a0be7589444b821)
        ;

        
    
    
            var poly_line_9693aeb015d6c30ffa2243679c5bc872 = L.polyline(
                [[41.9044425, -87.659007], [41.9040989, -87.6586554], [41.9041229, -87.6585814], [41.9044541, -87.6586637], [41.9044425, -87.659007]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9abda232c3275df905dead1c87c16126 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6290e6327eba1fd46287a48c4fdb013f = $(`<div id=&quot;html_6290e6327eba1fd46287a48c4fdb013f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314493 → 5493314493 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626392&quot; target=&quot;_blank&quot;>571626392</a>, <a href=&quot;https://www.openstreetmap.org/way/571626393&quot; target=&quot;_blank&quot;>571626393</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>120.59804832807804</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_9abda232c3275df905dead1c87c16126.setContent(html_6290e6327eba1fd46287a48c4fdb013f);
            
        

        poly_line_9693aeb015d6c30ffa2243679c5bc872.bindPopup(popup_9abda232c3275df905dead1c87c16126)
        ;

        
    
    
            var poly_line_60130b6db7c9500a2c17fa6f02817284 = L.polyline(
                [[41.9044283, -87.6590855], [41.9044425, -87.659007]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0ae5e45d2e961b32b40af8846e65bf63 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ad71f5886847be2cdcab2ad4bf245c55 = $(`<div id=&quot;html_ad71f5886847be2cdcab2ad4bf245c55&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314498 → 5493314493 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626394&quot; target=&quot;_blank&quot;>571626394</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>6.685636441733936</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_0ae5e45d2e961b32b40af8846e65bf63.setContent(html_ad71f5886847be2cdcab2ad4bf245c55);
            
        

        poly_line_60130b6db7c9500a2c17fa6f02817284.bindPopup(popup_0ae5e45d2e961b32b40af8846e65bf63)
        ;

        
    
    
            var poly_line_62e6817ebb2581ea64acf6b461673411 = L.polyline(
                [[41.9044283, -87.6590855], [41.9046444, -87.6592046]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7cef6eae67fa36e49717a284e8468080 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4ee08b0d199ae5764cce1423c35ec1b8 = $(`<div id=&quot;html_4ee08b0d199ae5764cce1423c35ec1b8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314498 → 5493314492 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626394&quot; target=&quot;_blank&quot;>571626394</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>25.972199599448643</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_7cef6eae67fa36e49717a284e8468080.setContent(html_4ee08b0d199ae5764cce1423c35ec1b8);
            
        

        poly_line_62e6817ebb2581ea64acf6b461673411.bindPopup(popup_7cef6eae67fa36e49717a284e8468080)
        ;

        
    
    
            var poly_line_b5ac2034257602899f40de4d1dcc1b1c = L.polyline(
                [[41.9044283, -87.6590855], [41.9044032, -87.6591407], [41.9043953, -87.6591605], [41.9043836, -87.6591871]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4c37066f0c6822c6a4c1d90bb0622dc9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_41232fe886aa5671e8c111fd5ff92f0c = $(`<div id=&quot;html_41232fe886aa5671e8c111fd5ff92f0c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314498 → 11967979353 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626391&quot; target=&quot;_blank&quot;>571626391</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>9.769648169332374</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_4c37066f0c6822c6a4c1d90bb0622dc9.setContent(html_41232fe886aa5671e8c111fd5ff92f0c);
            
        

        poly_line_b5ac2034257602899f40de4d1dcc1b1c.bindPopup(popup_4c37066f0c6822c6a4c1d90bb0622dc9)
        ;

        
    
    
            var poly_line_c301fdd3e865dc5211a6f2f6a1e473ad = L.polyline(
                [[41.9055038, -87.6586826], [41.9054947, -87.6593382], [41.9053934, -87.6593911]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0df60a98d57d28ac2473d43e7b3fb583 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0db340e7294b4940a737ebc11d1992d6 = $(`<div id=&quot;html_0db340e7294b4940a737ebc11d1992d6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314502 → 5493314504 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626395&quot; target=&quot;_blank&quot;>571626395</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>66.34958638691322</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_0df60a98d57d28ac2473d43e7b3fb583.setContent(html_0db340e7294b4940a737ebc11d1992d6);
            
        

        poly_line_c301fdd3e865dc5211a6f2f6a1e473ad.bindPopup(popup_0df60a98d57d28ac2473d43e7b3fb583)
        ;

        
    
    
            var poly_line_63e3b23385faee5d1f229717e364f42a = L.polyline(
                [[41.9053934, -87.6593911], [41.9050398, -87.6593352], [41.9048235, -87.6592822], [41.9046444, -87.6592046]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e920ea28cb6e41476ea75a0cbe3d7d6a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6a31b0568f5ddde23a3098dea209240f = $(`<div id=&quot;html_6a31b0568f5ddde23a3098dea209240f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314504 → 5493314492 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626394&quot; target=&quot;_blank&quot;>571626394</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>84.96284325059355</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_e920ea28cb6e41476ea75a0cbe3d7d6a.setContent(html_6a31b0568f5ddde23a3098dea209240f);
            
        

        poly_line_63e3b23385faee5d1f229717e364f42a.bindPopup(popup_e920ea28cb6e41476ea75a0cbe3d7d6a)
        ;

        
    
    
            var poly_line_963e48417f0f6543b5a415456e323dd1 = L.polyline(
                [[41.9053934, -87.6593911], [41.9054947, -87.6593382], [41.9055038, -87.6586826]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_06b2d6c1eabfda5861f4e3cfc67c6c80 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a1f2fd498e89da986a9dc64ec3a0a4f3 = $(`<div id=&quot;html_a1f2fd498e89da986a9dc64ec3a0a4f3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314504 → 5493314502 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626395&quot; target=&quot;_blank&quot;>571626395</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>66.34958638691322</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_06b2d6c1eabfda5861f4e3cfc67c6c80.setContent(html_a1f2fd498e89da986a9dc64ec3a0a4f3);
            
        

        poly_line_963e48417f0f6543b5a415456e323dd1.bindPopup(popup_06b2d6c1eabfda5861f4e3cfc67c6c80)
        ;

        
    
    
            var poly_line_40f9a985aa60eea2a1e3c347179825b3 = L.polyline(
                [[41.9053934, -87.6593911], [41.9053882, -87.6594507], [41.9053854, -87.6595016], [41.9053835, -87.6595276]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8d74261c04b950e7b2580809c726024f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b3630f32d755794208cd610eb2bee88b = $(`<div id=&quot;html_b3630f32d755794208cd610eb2bee88b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314504 → 11967979355 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820013&quot; target=&quot;_blank&quot;>1316820013</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>11.351917695961887</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_8d74261c04b950e7b2580809c726024f.setContent(html_b3630f32d755794208cd610eb2bee88b);
            
        

        poly_line_40f9a985aa60eea2a1e3c347179825b3.bindPopup(popup_8d74261c04b950e7b2580809c726024f)
        ;

        
    
    
            var poly_line_65ebe19e1c582e7982421fe8739bb276 = L.polyline(
                [[41.910534, -87.6586951], [41.9098074, -87.6589386]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ea086063ad6babc71ea9866d57be853a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b6965ac3b4922e49f8c98e1fce93b9d2 = $(`<div id=&quot;html_b6965ac3b4922e49f8c98e1fce93b9d2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314505 → 12195807081 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/221317664&quot; target=&quot;_blank&quot;>221317664</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>83.26908148272454</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Magnolia Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_ea086063ad6babc71ea9866d57be853a.setContent(html_b6965ac3b4922e49f8c98e1fce93b9d2);
            
        

        poly_line_65ebe19e1c582e7982421fe8739bb276.bindPopup(popup_ea086063ad6babc71ea9866d57be853a)
        ;

        
    
    
            var poly_line_a98758646e0159c26294f8a94ecc57fd = L.polyline(
                [[41.910534, -87.6586951], [41.9106605, -87.6586527], [41.9106777, -87.6586475], [41.9107677, -87.6586189]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_06271532dbf30ddb10a243e064d491f5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a08eb5291f8f78d4dcca7dfe5f28cdca = $(`<div id=&quot;html_a08eb5291f8f78d4dcca7dfe5f28cdca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314505 → 263404658 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/221317664&quot; target=&quot;_blank&quot;>221317664</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>26.74111407742629</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Magnolia Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_06271532dbf30ddb10a243e064d491f5.setContent(html_a08eb5291f8f78d4dcca7dfe5f28cdca);
            
        

        poly_line_a98758646e0159c26294f8a94ecc57fd.bindPopup(popup_06271532dbf30ddb10a243e064d491f5)
        ;

        
    
    
            var poly_line_05cf2785bf23b66c2069dbe2aac78248 = L.polyline(
                [[41.910534, -87.6586951], [41.9105612, -87.658811], [41.9105616, -87.6588339], [41.9105595, -87.6588701], [41.9105525, -87.6594821], [41.9105524, -87.6595149], [41.9105523, -87.6595568]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d9ed31449cf72e2b59f4069206847e48 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f9802542fcd26394ce3a5ea4e5187cd5 = $(`<div id=&quot;html_f9802542fcd26394ce3a5ea4e5187cd5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314505 → 5493314506 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626396&quot; target=&quot;_blank&quot;>571626396</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>71.78699331185938</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_d9ed31449cf72e2b59f4069206847e48.setContent(html_f9802542fcd26394ce3a5ea4e5187cd5);
            
        

        poly_line_05cf2785bf23b66c2069dbe2aac78248.bindPopup(popup_d9ed31449cf72e2b59f4069206847e48)
        ;

        
    
    
            var poly_line_414568e9f5cb43b6c910011b33080b0b = L.polyline(
                [[41.9105523, -87.6595568], [41.9105524, -87.6595149], [41.9105525, -87.6594821], [41.9105595, -87.6588701], [41.9105616, -87.6588339], [41.9105612, -87.658811], [41.910534, -87.6586951]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_bf4305a7cc7c38636c44fcd0ef17ffe4 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_dc6cf19ccebb87a39a39c1fc619ede1a = $(`<div id=&quot;html_dc6cf19ccebb87a39a39c1fc619ede1a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314506 → 5493314505 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626396&quot; target=&quot;_blank&quot;>571626396</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>71.78699331185938</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_bf4305a7cc7c38636c44fcd0ef17ffe4.setContent(html_dc6cf19ccebb87a39a39c1fc619ede1a);
            
        

        poly_line_414568e9f5cb43b6c910011b33080b0b.bindPopup(popup_bf4305a7cc7c38636c44fcd0ef17ffe4)
        ;

        
    
    
            var poly_line_65212e0d1b531dfc67b85066c6f4bb54 = L.polyline(
                [[41.9105523, -87.6595568], [41.910172, -87.6596239], [41.9101641, -87.6602821], [41.9101635, -87.6603812]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e4745d972a8bb72fe9834f4b5ba0baa6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_47c37c95a79bee443cc4374df92acd12 = $(`<div id=&quot;html_47c37c95a79bee443cc4374df92acd12&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314506 → 4589688373 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317723605&quot; target=&quot;_blank&quot;>1317723605</a>, <a href=&quot;https://www.openstreetmap.org/way/463726319&quot; target=&quot;_blank&quot;>463726319</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>105.32485884113828</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_e4745d972a8bb72fe9834f4b5ba0baa6.setContent(html_47c37c95a79bee443cc4374df92acd12);
            
        

        poly_line_65212e0d1b531dfc67b85066c6f4bb54.bindPopup(popup_e4745d972a8bb72fe9834f4b5ba0baa6)
        ;

        
    
    
            var poly_line_9d163a817221197e39f45d68caf3d726 = L.polyline(
                [[41.9105523, -87.6595568], [41.9106649, -87.6595405], [41.9107566, -87.6595266]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6e55721e55fd8b8f41eecc04abe8d050 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_df1127ab29497a7ec2cff68588ab73f7 = $(`<div id=&quot;html_df1127ab29497a7ec2cff68588ab73f7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314506 → 12195807197 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317723605&quot; target=&quot;_blank&quot;>1317723605</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.854269960240693</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_6e55721e55fd8b8f41eecc04abe8d050.setContent(html_df1127ab29497a7ec2cff68588ab73f7);
            
        

        poly_line_9d163a817221197e39f45d68caf3d726.bindPopup(popup_6e55721e55fd8b8f41eecc04abe8d050)
        ;

        
    
    
            var poly_line_e1d6c4754795c8ccfbbb34e4fc028d85 = L.polyline(
                [[41.9039238, -87.6541207], [41.9037729, -87.6539998]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5b4f04cf84f0844510c2808fcca5913b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_11592ad806838cce0e730b3d07fa74c6 = $(`<div id=&quot;html_11592ad806838cce0e730b3d07fa74c6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314521 → 5493313717 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626351&quot; target=&quot;_blank&quot;>571626351</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.536043342308677</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_5b4f04cf84f0844510c2808fcca5913b.setContent(html_11592ad806838cce0e730b3d07fa74c6);
            
        

        poly_line_e1d6c4754795c8ccfbbb34e4fc028d85.bindPopup(popup_5b4f04cf84f0844510c2808fcca5913b)
        ;

        
    
    
            var poly_line_04001e9a07332fdeac673140f40463c4 = L.polyline(
                [[41.9039238, -87.6541207], [41.9038313, -87.6543492]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8bf61209fe8856d63e567b686f26d98e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f06720d4e07133d17ea77f867fe6903e = $(`<div id=&quot;html_f06720d4e07133d17ea77f867fe6903e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314521 → 734235544 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626352&quot; target=&quot;_blank&quot;>571626352</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.526606256781683</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_8bf61209fe8856d63e567b686f26d98e.setContent(html_f06720d4e07133d17ea77f867fe6903e);
            
        

        poly_line_04001e9a07332fdeac673140f40463c4.bindPopup(popup_8bf61209fe8856d63e567b686f26d98e)
        ;

        
    
    
            var poly_line_04eca64010ab04ce05fcbdf66300c8a5 = L.polyline(
                [[41.9039238, -87.6541207], [41.9042607, -87.6533905], [41.9041113, -87.6532759]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c8096ca37ec80a4b54f00f2e0ff17f0a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_eb4637e703dcd175e1426f28a34cc5ad = $(`<div id=&quot;html_eb4637e703dcd175e1426f28a34cc5ad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314521 → 5493313718 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626352&quot; target=&quot;_blank&quot;>571626352</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>90.2290070089794</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_c8096ca37ec80a4b54f00f2e0ff17f0a.setContent(html_eb4637e703dcd175e1426f28a34cc5ad);
            
        

        poly_line_04eca64010ab04ce05fcbdf66300c8a5.bindPopup(popup_c8096ca37ec80a4b54f00f2e0ff17f0a)
        ;

        
    
    
            var poly_line_677e7c55251f809252ad077e1f5ce02e = L.polyline(
                [[41.9064293, -87.6549134], [41.9067729, -87.6551965]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d1e9fda1d5405871d66935b35a41c6fb = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e37f493a3c7fcc9ff16845d436523e16 = $(`<div id=&quot;html_e37f493a3c7fcc9ff16845d436523e16&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314529 → 5493314432 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24088116&quot; target=&quot;_blank&quot;>24088116</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>44.817608853300655</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Hickory Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_d1e9fda1d5405871d66935b35a41c6fb.setContent(html_e37f493a3c7fcc9ff16845d436523e16);
            
        

        poly_line_677e7c55251f809252ad077e1f5ce02e.bindPopup(popup_d1e9fda1d5405871d66935b35a41c6fb)
        ;

        
    
    
            var poly_line_ca2dd44f461affbc0168313927044ab4 = L.polyline(
                [[41.9064293, -87.6549134], [41.9058514, -87.6544371]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fb41e0bd6b1db412d54d2c30442d1923 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e62dac276bf50f40415f9aa76df90ec0 = $(`<div id=&quot;html_e62dac276bf50f40415f9aa76df90ec0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314529 → 5493314534 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24088116&quot; target=&quot;_blank&quot;>24088116</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>75.38547296328402</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Hickory Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_fb41e0bd6b1db412d54d2c30442d1923.setContent(html_e62dac276bf50f40415f9aa76df90ec0);
            
        

        poly_line_ca2dd44f461affbc0168313927044ab4.bindPopup(popup_fb41e0bd6b1db412d54d2c30442d1923)
        ;

        
    
    
            var poly_line_b52bd9876938be1f7beaa18c70f0d402 = L.polyline(
                [[41.9064293, -87.6549134], [41.9063134, -87.6551196]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_85abd26611cea3e4f2335182470d5feb = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_048090d216a40aebc036ce590ff601f9 = $(`<div id=&quot;html_048090d216a40aebc036ce590ff601f9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314529 → 5493314539 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626354&quot; target=&quot;_blank&quot;>571626354</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.383977279662627</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_85abd26611cea3e4f2335182470d5feb.setContent(html_048090d216a40aebc036ce590ff601f9);
            
        

        poly_line_b52bd9876938be1f7beaa18c70f0d402.bindPopup(popup_85abd26611cea3e4f2335182470d5feb)
        ;

        
    
    
            var poly_line_29ca8e8dbc8afd5f97ef8eca97ee9996 = L.polyline(
                [[41.906076, -87.6549251], [41.9059706, -87.6551798]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9231bb28921eee1f56ad7a6c80f952f5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e120ab9c8eebe4d44f73cce1a186b438 = $(`<div id=&quot;html_e120ab9c8eebe4d44f73cce1a186b438&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314530 → 5493314531 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626357&quot; target=&quot;_blank&quot;>571626357</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>24.117159359849204</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_9231bb28921eee1f56ad7a6c80f952f5.setContent(html_e120ab9c8eebe4d44f73cce1a186b438);
            
        

        poly_line_29ca8e8dbc8afd5f97ef8eca97ee9996.bindPopup(popup_9231bb28921eee1f56ad7a6c80f952f5)
        ;

        
    
    
            var poly_line_0f22f2a18d5f8b54f9a04add995ef15a = L.polyline(
                [[41.906076, -87.6549251], [41.9063134, -87.6551196]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0707f4d36afb0f99f253b023622c2c4e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a3f3c7d92f0c71ea9789cb30084ddbab = $(`<div id=&quot;html_a3f3c7d92f0c71ea9789cb30084ddbab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314530 → 5493314539 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626360&quot; target=&quot;_blank&quot;>571626360</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>30.917960503947175</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_0707f4d36afb0f99f253b023622c2c4e.setContent(html_a3f3c7d92f0c71ea9789cb30084ddbab);
            
        

        poly_line_0f22f2a18d5f8b54f9a04add995ef15a.bindPopup(popup_0707f4d36afb0f99f253b023622c2c4e)
        ;

        
    
    
            var poly_line_30e38fd3dd99ae0409be82c79fe9c6c9 = L.polyline(
                [[41.906076, -87.6549251], [41.9059228, -87.6547996]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_400d0d82d2d14c22403be9d59f8aebd1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0f07807d32881133eb9c80dae982d21f = $(`<div id=&quot;html_0f07807d32881133eb9c80dae982d21f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314530 → 5493314533 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626360&quot; target=&quot;_blank&quot;>571626360</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.951457775341584</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_400d0d82d2d14c22403be9d59f8aebd1.setContent(html_0f07807d32881133eb9c80dae982d21f);
            
        

        poly_line_30e38fd3dd99ae0409be82c79fe9c6c9.bindPopup(popup_400d0d82d2d14c22403be9d59f8aebd1)
        ;

        
    
    
            var poly_line_ce3b1724a1855d349fe6b2211b4a4fec = L.polyline(
                [[41.9059706, -87.6551798], [41.906076, -87.6549251]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6b818de84ed77080b72822d0a8065de9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_210f1747388a0f095057aecfa706da44 = $(`<div id=&quot;html_210f1747388a0f095057aecfa706da44&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314531 → 5493314530 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626357&quot; target=&quot;_blank&quot;>571626357</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>24.117159359849204</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_6b818de84ed77080b72822d0a8065de9.setContent(html_210f1747388a0f095057aecfa706da44);
            
        

        poly_line_ce3b1724a1855d349fe6b2211b4a4fec.bindPopup(popup_6b818de84ed77080b72822d0a8065de9)
        ;

        
    
    
            var poly_line_429f7c0ca9e58314c8b953767288dd58 = L.polyline(
                [[41.9059706, -87.6551798], [41.9057363, -87.6551676]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6be253294779745589eaaef68bf1e32c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b1aea8dcb974b20a371fa26b5693303d = $(`<div id=&quot;html_b1aea8dcb974b20a371fa26b5693303d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314531 → 5493314532 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626360&quot; target=&quot;_blank&quot;>571626360</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>26.072563660194334</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_6be253294779745589eaaef68bf1e32c.setContent(html_b1aea8dcb974b20a371fa26b5693303d);
            
        

        poly_line_429f7c0ca9e58314c8b953767288dd58.bindPopup(popup_6be253294779745589eaaef68bf1e32c)
        ;

        
    
    
            var poly_line_31f65e3a122294346c475157de58f488 = L.polyline(
                [[41.9059706, -87.6551798], [41.9062104, -87.6551923], [41.9063134, -87.6551196]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0df579dbac199bfe83da4953b4740040 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_89e7f1972b3f4ecf7608af97a09d6899 = $(`<div id=&quot;html_89e7f1972b3f4ecf7608af97a09d6899&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314531 → 5493314539 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626360&quot; target=&quot;_blank&quot;>571626360</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>39.62178203932485</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_0df579dbac199bfe83da4953b4740040.setContent(html_89e7f1972b3f4ecf7608af97a09d6899);
            
        

        poly_line_31f65e3a122294346c475157de58f488.bindPopup(popup_0df579dbac199bfe83da4953b4740040)
        ;

        
    
    
            var poly_line_0ed02f70038cc1336901fbeb370fe8d7 = L.polyline(
                [[41.9057363, -87.6551676], [41.9059228, -87.6547996]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fc4839c301924c35eccdfcddc5f93477 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1737975f059231da2c63b09b6848ea76 = $(`<div id=&quot;html_1737975f059231da2c63b09b6848ea76&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314532 → 5493314533 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626358&quot; target=&quot;_blank&quot;>571626358</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>36.84458858246756</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_fc4839c301924c35eccdfcddc5f93477.setContent(html_1737975f059231da2c63b09b6848ea76);
            
        

        poly_line_0ed02f70038cc1336901fbeb370fe8d7.bindPopup(popup_fc4839c301924c35eccdfcddc5f93477)
        ;

        
    
    
            var poly_line_bf96edba06f5c1afe3c7d1cb9cb92ee3 = L.polyline(
                [[41.9057363, -87.6551676], [41.9055294, -87.6551568]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_84e5f1ba4e27a5ee32e12adbf05b998e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c5d040e978aa188b350b63622c957b76 = $(`<div id=&quot;html_c5d040e978aa188b350b63622c957b76&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314532 → 5493314536 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626360&quot; target=&quot;_blank&quot;>571626360</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>23.023617308050316</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_84e5f1ba4e27a5ee32e12adbf05b998e.setContent(html_c5d040e978aa188b350b63622c957b76);
            
        

        poly_line_bf96edba06f5c1afe3c7d1cb9cb92ee3.bindPopup(popup_84e5f1ba4e27a5ee32e12adbf05b998e)
        ;

        
    
    
            var poly_line_aa11c2c2c2c1840b44a0bea8741c8599 = L.polyline(
                [[41.9057363, -87.6551676], [41.9059706, -87.6551798]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e6ca20f061fc24a9c4d49414a8f53c50 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_228458cacc0453e29e0a251e3c6502c4 = $(`<div id=&quot;html_228458cacc0453e29e0a251e3c6502c4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314532 → 5493314531 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626360&quot; target=&quot;_blank&quot;>571626360</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>26.072563660194334</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_e6ca20f061fc24a9c4d49414a8f53c50.setContent(html_228458cacc0453e29e0a251e3c6502c4);
            
        

        poly_line_aa11c2c2c2c1840b44a0bea8741c8599.bindPopup(popup_e6ca20f061fc24a9c4d49414a8f53c50)
        ;

        
    
    
            var poly_line_76a15729296992a6e1bff18838d3d020 = L.polyline(
                [[41.9059228, -87.6547996], [41.9057363, -87.6551676]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_882add7ee5ed99247d72cf4db0332a2f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_aeaed3968cd31444a4879f2b6ae1649a = $(`<div id=&quot;html_aeaed3968cd31444a4879f2b6ae1649a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314533 → 5493314532 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626358&quot; target=&quot;_blank&quot;>571626358</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>36.84458858246756</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_882add7ee5ed99247d72cf4db0332a2f.setContent(html_aeaed3968cd31444a4879f2b6ae1649a);
            
        

        poly_line_76a15729296992a6e1bff18838d3d020.bindPopup(popup_882add7ee5ed99247d72cf4db0332a2f)
        ;

        
    
    
            var poly_line_fc837c4b26a21a4f16dd8bc370360d5d = L.polyline(
                [[41.9059228, -87.6547996], [41.906076, -87.6549251]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1a78987fe670f6179fd9fbe83c6105ae = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fc82b5ea5ff584dcb616a64c7f9753e2 = $(`<div id=&quot;html_fc82b5ea5ff584dcb616a64c7f9753e2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314533 → 5493314530 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626360&quot; target=&quot;_blank&quot;>571626360</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.951457775341584</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_1a78987fe670f6179fd9fbe83c6105ae.setContent(html_fc82b5ea5ff584dcb616a64c7f9753e2);
            
        

        poly_line_fc837c4b26a21a4f16dd8bc370360d5d.bindPopup(popup_1a78987fe670f6179fd9fbe83c6105ae)
        ;

        
    
    
            var poly_line_c1e3f1fc7615809f1fc6c67e743f74bf = L.polyline(
                [[41.9059228, -87.6547996], [41.9057962, -87.6546959], [41.9057486, -87.6546569]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c4c6f9e9b0ec7b01d8c959de6421955a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_887c6cce702959a9fce941ca4fe318de = $(`<div id=&quot;html_887c6cce702959a9fce941ca4fe318de&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314533 → 5493314535 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626360&quot; target=&quot;_blank&quot;>571626360</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.68620461774471</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_c4c6f9e9b0ec7b01d8c959de6421955a.setContent(html_887c6cce702959a9fce941ca4fe318de);
            
        

        poly_line_c1e3f1fc7615809f1fc6c67e743f74bf.bindPopup(popup_c4c6f9e9b0ec7b01d8c959de6421955a)
        ;

        
    
    
            var poly_line_af03d4d556537da5da84a85d0cdd2148 = L.polyline(
                [[41.9058514, -87.6544371], [41.9064293, -87.6549134]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6675a085a5edcb37ee18c97cc973b3c7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5683cb0cf904076db5d446e36c5097f4 = $(`<div id=&quot;html_5683cb0cf904076db5d446e36c5097f4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314534 → 5493314529 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24088116&quot; target=&quot;_blank&quot;>24088116</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>75.38547296328402</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Hickory Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_6675a085a5edcb37ee18c97cc973b3c7.setContent(html_5683cb0cf904076db5d446e36c5097f4);
            
        

        poly_line_af03d4d556537da5da84a85d0cdd2148.bindPopup(popup_6675a085a5edcb37ee18c97cc973b3c7)
        ;

        
    
    
            var poly_line_6f3dfec15a73ed095680e9241ca74d83 = L.polyline(
                [[41.9058514, -87.6544371], [41.9045205, -87.6533404]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9a68c753c8e34ef7897c2458d94196f5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_997ac69a31b71d9f63e08939968c07fb = $(`<div id=&quot;html_997ac69a31b71d9f63e08939968c07fb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314534 → 261207496 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24088116&quot; target=&quot;_blank&quot;>24088116</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>173.60363162254566</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Hickory Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_9a68c753c8e34ef7897c2458d94196f5.setContent(html_997ac69a31b71d9f63e08939968c07fb);
            
        

        poly_line_6f3dfec15a73ed095680e9241ca74d83.bindPopup(popup_9a68c753c8e34ef7897c2458d94196f5)
        ;

        
    
    
            var poly_line_ae3c9b7fecc24749621e972d121d5367 = L.polyline(
                [[41.9058514, -87.6544371], [41.9057486, -87.6546569]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_830ac01f3b8056d1cd18b35a6bc55fe8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5bb4e18e8df155a478bca33dbcda5d8c = $(`<div id=&quot;html_5bb4e18e8df155a478bca33dbcda5d8c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314534 → 5493314535 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626355&quot; target=&quot;_blank&quot;>571626355</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.48334846766877</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_830ac01f3b8056d1cd18b35a6bc55fe8.setContent(html_5bb4e18e8df155a478bca33dbcda5d8c);
            
        

        poly_line_ae3c9b7fecc24749621e972d121d5367.bindPopup(popup_830ac01f3b8056d1cd18b35a6bc55fe8)
        ;

        
    
    
            var poly_line_041983efaa054ecb8fc88cff066416e6 = L.polyline(
                [[41.9057486, -87.6546569], [41.9058514, -87.6544371]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_589d66d212c28987dcca44c0bc7a21db = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e1464318369ed318c99d0368db36c597 = $(`<div id=&quot;html_e1464318369ed318c99d0368db36c597&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314535 → 5493314534 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626355&quot; target=&quot;_blank&quot;>571626355</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.48334846766877</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_589d66d212c28987dcca44c0bc7a21db.setContent(html_e1464318369ed318c99d0368db36c597);
            
        

        poly_line_041983efaa054ecb8fc88cff066416e6.bindPopup(popup_589d66d212c28987dcca44c0bc7a21db)
        ;

        
    
    
            var poly_line_3480d3d4d86cab972821e6f49b95511a = L.polyline(
                [[41.9057486, -87.6546569], [41.9055294, -87.6551568]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a8e3e4fbdc293ce0f7bc151876e5d632 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c11a1af6885b1b34e612cc6c85294d8b = $(`<div id=&quot;html_c11a1af6885b1b34e612cc6c85294d8b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314535 → 5493314536 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626359&quot; target=&quot;_blank&quot;>571626359</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>48.01628697018394</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_a8e3e4fbdc293ce0f7bc151876e5d632.setContent(html_c11a1af6885b1b34e612cc6c85294d8b);
            
        

        poly_line_3480d3d4d86cab972821e6f49b95511a.bindPopup(popup_a8e3e4fbdc293ce0f7bc151876e5d632)
        ;

        
    
    
            var poly_line_4a98f4817d9af97f3bf5f1648a9ed53c = L.polyline(
                [[41.9057486, -87.6546569], [41.905595, -87.654531], [41.9055719, -87.6545816], [41.9053602, -87.6550455], [41.9053302, -87.6551465]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ac3140bd6f7a6a01124575739c821ac3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1982c42fb8655210f952affc30f7b88c = $(`<div id=&quot;html_1982c42fb8655210f952affc30f7b88c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314535 → 5493314537 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/699889322&quot; target=&quot;_blank&quot;>699889322</a>, <a href=&quot;https://www.openstreetmap.org/way/571626356&quot; target=&quot;_blank&quot;>571626356</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>78.95191281595328</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_ac3140bd6f7a6a01124575739c821ac3.setContent(html_1982c42fb8655210f952affc30f7b88c);
            
        

        poly_line_4a98f4817d9af97f3bf5f1648a9ed53c.bindPopup(popup_ac3140bd6f7a6a01124575739c821ac3)
        ;

        
    
    
            var poly_line_cdc7a788f227f1f265e822e46f70be72 = L.polyline(
                [[41.9057486, -87.6546569], [41.9057962, -87.6546959], [41.9059228, -87.6547996]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7f71884d34cf965f2ef8d1004afa9ce5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f91292503c560f3821ad8cf2bdf0cb61 = $(`<div id=&quot;html_f91292503c560f3821ad8cf2bdf0cb61&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314535 → 5493314533 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626360&quot; target=&quot;_blank&quot;>571626360</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.68620461774471</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_7f71884d34cf965f2ef8d1004afa9ce5.setContent(html_f91292503c560f3821ad8cf2bdf0cb61);
            
        

        poly_line_cdc7a788f227f1f265e822e46f70be72.bindPopup(popup_7f71884d34cf965f2ef8d1004afa9ce5)
        ;

        
    
    
            var poly_line_4094f9d9505a8b81f0b2bfb52e31923a = L.polyline(
                [[41.9055294, -87.6551568], [41.9057486, -87.6546569]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7fcfd7b7134ff0ed77942eee1c3e27f8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fb992378140177426d5ed3e131e8ee9f = $(`<div id=&quot;html_fb992378140177426d5ed3e131e8ee9f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314536 → 5493314535 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626359&quot; target=&quot;_blank&quot;>571626359</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>48.01628697018394</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_7fcfd7b7134ff0ed77942eee1c3e27f8.setContent(html_fb992378140177426d5ed3e131e8ee9f);
            
        

        poly_line_4094f9d9505a8b81f0b2bfb52e31923a.bindPopup(popup_7fcfd7b7134ff0ed77942eee1c3e27f8)
        ;

        
    
    
            var poly_line_0ad573c494987f429d1a44c6a2456777 = L.polyline(
                [[41.9055294, -87.6551568], [41.9053302, -87.6551465]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_787e1f6474a32a6bc73863aab07dae98 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_bdc52117769c142bdae543eb68cb3c7f = $(`<div id=&quot;html_bdc52117769c142bdae543eb68cb3c7f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314536 → 5493314537 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626360&quot; target=&quot;_blank&quot;>571626360</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.166455837028447</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_787e1f6474a32a6bc73863aab07dae98.setContent(html_bdc52117769c142bdae543eb68cb3c7f);
            
        

        poly_line_0ad573c494987f429d1a44c6a2456777.bindPopup(popup_787e1f6474a32a6bc73863aab07dae98)
        ;

        
    
    
            var poly_line_740f809eddaf537651ca3dff4fb6a809 = L.polyline(
                [[41.9055294, -87.6551568], [41.9057363, -87.6551676]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b41db7b605352fad91efc4b8b292e41d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_df47ee941b3581df067e9daa44301e25 = $(`<div id=&quot;html_df47ee941b3581df067e9daa44301e25&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314536 → 5493314532 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626360&quot; target=&quot;_blank&quot;>571626360</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>23.023617308050316</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_b41db7b605352fad91efc4b8b292e41d.setContent(html_df47ee941b3581df067e9daa44301e25);
            
        

        poly_line_740f809eddaf537651ca3dff4fb6a809.bindPopup(popup_b41db7b605352fad91efc4b8b292e41d)
        ;

        
    
    
            var poly_line_a325b093283b47d443b9b5bf5c537513 = L.polyline(
                [[41.9053302, -87.6551465], [41.9055294, -87.6551568]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_39b4036bee8bcb5250aaf8355c9c1af8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_838ad8af430bbcc3a911e0cb6836a6d4 = $(`<div id=&quot;html_838ad8af430bbcc3a911e0cb6836a6d4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314537 → 5493314536 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626360&quot; target=&quot;_blank&quot;>571626360</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.166455837028447</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_39b4036bee8bcb5250aaf8355c9c1af8.setContent(html_838ad8af430bbcc3a911e0cb6836a6d4);
            
        

        poly_line_a325b093283b47d443b9b5bf5c537513.bindPopup(popup_39b4036bee8bcb5250aaf8355c9c1af8)
        ;

        
    
    
            var poly_line_981f44c584338278f7099e15d1f47755 = L.polyline(
                [[41.9053302, -87.6551465], [41.9053602, -87.6550455], [41.9055719, -87.6545816], [41.905595, -87.654531], [41.9057486, -87.6546569]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3b6ecbffb5b67407ec61d2d39178992b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_47d9edc2e669ff31465cd7773ccfa512 = $(`<div id=&quot;html_47d9edc2e669ff31465cd7773ccfa512&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314537 → 5493314535 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/699889322&quot; target=&quot;_blank&quot;>699889322</a>, <a href=&quot;https://www.openstreetmap.org/way/571626356&quot; target=&quot;_blank&quot;>571626356</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>78.95191281595328</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_3b6ecbffb5b67407ec61d2d39178992b.setContent(html_47d9edc2e669ff31465cd7773ccfa512);
            
        

        poly_line_981f44c584338278f7099e15d1f47755.bindPopup(popup_3b6ecbffb5b67407ec61d2d39178992b)
        ;

        
    
    
            var poly_line_592c6a0fc3d849c8bdb9e3b30a2a7c4f = L.polyline(
                [[41.9053302, -87.6551465], [41.9053224, -87.6551726], [41.9053139, -87.6553954]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7d09bd6c44ccc18fef8ec6a92c6fd03f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7864acfc4cb2856d2db575b0c646d897 = $(`<div id=&quot;html_7864acfc4cb2856d2db575b0c646d897&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314537 → 5493314543 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/699889322&quot; target=&quot;_blank&quot;>699889322</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.790029066456924</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_7d09bd6c44ccc18fef8ec6a92c6fd03f.setContent(html_7864acfc4cb2856d2db575b0c646d897);
            
        

        poly_line_592c6a0fc3d849c8bdb9e3b30a2a7c4f.bindPopup(popup_7d09bd6c44ccc18fef8ec6a92c6fd03f)
        ;

        
    
    
            var poly_line_ae2ebfdcc540513ccf5e17740319c139 = L.polyline(
                [[41.9063134, -87.6551196], [41.9064293, -87.6549134]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c51c6dd8b94687395eb3aca1625a7d1a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_89d75b7ec058948fd0dbad2d3dc4b387 = $(`<div id=&quot;html_89d75b7ec058948fd0dbad2d3dc4b387&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314539 → 5493314529 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626354&quot; target=&quot;_blank&quot;>571626354</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.383977279662627</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_c51c6dd8b94687395eb3aca1625a7d1a.setContent(html_89d75b7ec058948fd0dbad2d3dc4b387);
            
        

        poly_line_ae2ebfdcc540513ccf5e17740319c139.bindPopup(popup_c51c6dd8b94687395eb3aca1625a7d1a)
        ;

        
    
    
            var poly_line_928622e291d196dd73bd15c55bef4c34 = L.polyline(
                [[41.9063134, -87.6551196], [41.906076, -87.6549251]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_279258d64813754fdacff6fd0b313448 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b4875d29ff52476b7205572b1cd9245a = $(`<div id=&quot;html_b4875d29ff52476b7205572b1cd9245a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314539 → 5493314530 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626360&quot; target=&quot;_blank&quot;>571626360</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>30.917960503947175</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_279258d64813754fdacff6fd0b313448.setContent(html_b4875d29ff52476b7205572b1cd9245a);
            
        

        poly_line_928622e291d196dd73bd15c55bef4c34.bindPopup(popup_279258d64813754fdacff6fd0b313448)
        ;

        
    
    
            var poly_line_8802612af6c7ae6fcf69f6e59a54ae27 = L.polyline(
                [[41.9063134, -87.6551196], [41.9062104, -87.6551923], [41.9059706, -87.6551798]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_60e3683e5dca7633c1b9d227329496d3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5b51a9c137835e1d9622e17fbf334b63 = $(`<div id=&quot;html_5b51a9c137835e1d9622e17fbf334b63&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314539 → 5493314531 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626360&quot; target=&quot;_blank&quot;>571626360</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>39.62178203932485</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_60e3683e5dca7633c1b9d227329496d3.setContent(html_5b51a9c137835e1d9622e17fbf334b63);
            
        

        poly_line_8802612af6c7ae6fcf69f6e59a54ae27.bindPopup(popup_60e3683e5dca7633c1b9d227329496d3)
        ;

        
    
    
            var poly_line_2c61a7951e31cf4641ff178efe2f5479 = L.polyline(
                [[41.9053139, -87.6553954], [41.905227, -87.6553737], [41.9052116, -87.655369], [41.9051377, -87.6553464], [41.9050525, -87.6553145]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e49bdc7e885dd054c45ecb81925c9158 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f11b3fb9f7d5b72930056895343c8de6 = $(`<div id=&quot;html_f11b3fb9f7d5b72930056895343c8de6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314543 → 261162252 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59204024&quot; target=&quot;_blank&quot;>59204024</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>29.846578066529148</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Cherry Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_e49bdc7e885dd054c45ecb81925c9158.setContent(html_f11b3fb9f7d5b72930056895343c8de6);
            
        

        poly_line_2c61a7951e31cf4641ff178efe2f5479.bindPopup(popup_e49bdc7e885dd054c45ecb81925c9158)
        ;

        
    
    
            var poly_line_15448ece3a4cad124406190a4596fc65 = L.polyline(
                [[41.9053139, -87.6553954], [41.9053482, -87.6554], [41.9053878, -87.6554014], [41.9054501, -87.6554036], [41.9058131, -87.6554121], [41.9060315, -87.6554173], [41.9064386, -87.6554269], [41.9064522, -87.6554272], [41.9066798, -87.6554325], [41.9067004, -87.655433], [41.9069345, -87.6554385]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_935f91378c4de7be9461c8743a523138 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7f8556fa40e37cb25756ed81e98f65ca = $(`<div id=&quot;html_7f8556fa40e37cb25756ed81e98f65ca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314543 → 9391285666 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59204024&quot; target=&quot;_blank&quot;>59204024</a>, <a href=&quot;https://www.openstreetmap.org/way/59204032&quot; target=&quot;_blank&quot;>59204032</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>180.25088892721905</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Cherry Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr>             </table>         </div>         </div>`)[0];
                popup_935f91378c4de7be9461c8743a523138.setContent(html_7f8556fa40e37cb25756ed81e98f65ca);
            
        

        poly_line_15448ece3a4cad124406190a4596fc65.bindPopup(popup_935f91378c4de7be9461c8743a523138)
        ;

        
    
    
            var poly_line_3f2da555aec8987267db5b174ceff2e5 = L.polyline(
                [[41.9053139, -87.6553954], [41.9053224, -87.6551726], [41.9053302, -87.6551465]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6b07dc7097f5a78e8b3b565083e70b84 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ce605db1bffb7a2f0bab5c642471a30e = $(`<div id=&quot;html_ce605db1bffb7a2f0bab5c642471a30e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314543 → 5493314537 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/699889322&quot; target=&quot;_blank&quot;>699889322</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.790029066456924</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_6b07dc7097f5a78e8b3b565083e70b84.setContent(html_ce605db1bffb7a2f0bab5c642471a30e);
            
        

        poly_line_3f2da555aec8987267db5b174ceff2e5.bindPopup(popup_6b07dc7097f5a78e8b3b565083e70b84)
        ;

        
    
    
            var poly_line_c43cd708577a47f18fcbaab6d124567a = L.polyline(
                [[41.9054114, -87.6523022], [41.9053427, -87.6524581]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f3bee7beb238beba73163f1acc5e600b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4580ba9bc2ccc87c53ff34f48d7787cd = $(`<div id=&quot;html_4580ba9bc2ccc87c53ff34f48d7787cd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314554 → 5493314570 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626365&quot; target=&quot;_blank&quot;>571626365</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>14.993732155406907</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_f3bee7beb238beba73163f1acc5e600b.setContent(html_4580ba9bc2ccc87c53ff34f48d7787cd);
            
        

        poly_line_c43cd708577a47f18fcbaab6d124567a.bindPopup(popup_f3bee7beb238beba73163f1acc5e600b)
        ;

        
    
    
            var poly_line_146e83a823a890d3408308c5c2953c9d = L.polyline(
                [[41.9054114, -87.6523022], [41.9053022, -87.6521933], [41.905381, -87.6520102], [41.9056321, -87.6522326], [41.9055465, -87.6524081], [41.9054114, -87.6523022]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b34674b51b918679dea6a8268186a2fb = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2ea2c77796178fa2522ecc4880708b6c = $(`<div id=&quot;html_2ea2c77796178fa2522ecc4880708b6c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314554 → 5493314554 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626363&quot; target=&quot;_blank&quot;>571626363</a>, <a href=&quot;https://www.openstreetmap.org/way/571626365&quot; target=&quot;_blank&quot;>571626365</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>100.82362966529718</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_b34674b51b918679dea6a8268186a2fb.setContent(html_2ea2c77796178fa2522ecc4880708b6c);
            
        

        poly_line_146e83a823a890d3408308c5c2953c9d.bindPopup(popup_b34674b51b918679dea6a8268186a2fb)
        ;

        
    
    
            var poly_line_27bb4aacae7d343d7557ec6144018716 = L.polyline(
                [[41.9054114, -87.6523022], [41.9055465, -87.6524081], [41.9056321, -87.6522326], [41.905381, -87.6520102], [41.9053022, -87.6521933], [41.9054114, -87.6523022]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d9a13c340350db9cc91567492551924c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d071d93d0e02ccef2b96741262b0bc63 = $(`<div id=&quot;html_d071d93d0e02ccef2b96741262b0bc63&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314554 → 5493314554 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626363&quot; target=&quot;_blank&quot;>571626363</a>, <a href=&quot;https://www.openstreetmap.org/way/571626365&quot; target=&quot;_blank&quot;>571626365</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>100.82362966529718</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_d9a13c340350db9cc91567492551924c.setContent(html_d071d93d0e02ccef2b96741262b0bc63);
            
        

        poly_line_27bb4aacae7d343d7557ec6144018716.bindPopup(popup_d9a13c340350db9cc91567492551924c)
        ;

        
    
    
            var poly_line_413ba424129d4693f9d43e533f6b3bd4 = L.polyline(
                [[41.905005, -87.6522232], [41.905036, -87.6521517]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_581289c5700b07df731cbaccca61189f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_25127324052ac6a198f453c2265d4adf = $(`<div id=&quot;html_25127324052ac6a198f453c2265d4adf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314555 → 261150714 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626381&quot; target=&quot;_blank&quot;>571626381</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>6.84797386447993</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Evergreen Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_581289c5700b07df731cbaccca61189f.setContent(html_25127324052ac6a198f453c2265d4adf);
            
        

        poly_line_413ba424129d4693f9d43e533f6b3bd4.bindPopup(popup_581289c5700b07df731cbaccca61189f)
        ;

        
    
    
            var poly_line_6bae75783d2d9d5e4fad3fea5047020b = L.polyline(
                [[41.905005, -87.6522232], [41.9045715, -87.6532229], [41.9045205, -87.6533404]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_138206f4e564f81fc7fb5d0a7442a744 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a9b5b6562912ed3fafac3f66ecfac23f = $(`<div id=&quot;html_a9b5b6562912ed3fafac3f66ecfac23f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314555 → 261207496 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1125567609&quot; target=&quot;_blank&quot;>1125567609</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>107.00780593559979</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Evergreen Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_138206f4e564f81fc7fb5d0a7442a744.setContent(html_a9b5b6562912ed3fafac3f66ecfac23f);
            
        

        poly_line_6bae75783d2d9d5e4fad3fea5047020b.bindPopup(popup_138206f4e564f81fc7fb5d0a7442a744)
        ;

        
    
    
            var poly_line_34c3c2bf17584b51676706f5b75998ee = L.polyline(
                [[41.905149, -87.6533276], [41.9048658, -87.6530944]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d5fc997415c85f6f7935a42085eb71ce = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_eefbc34aaab4c27f2f4fea699f76e4ba = $(`<div id=&quot;html_eefbc34aaab4c27f2f4fea699f76e4ba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314559 → 5493314560 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626371&quot; target=&quot;_blank&quot;>571626371</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>36.93372089003406</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_d5fc997415c85f6f7935a42085eb71ce.setContent(html_eefbc34aaab4c27f2f4fea699f76e4ba);
            
        

        poly_line_34c3c2bf17584b51676706f5b75998ee.bindPopup(popup_d5fc997415c85f6f7935a42085eb71ce)
        ;

        
    
    
            var poly_line_4f5cc4734f8421f0a6547d838adbf8d0 = L.polyline(
                [[41.905149, -87.6533276], [41.9050769, -87.6534961], [41.9047886, -87.6532645], [41.9048658, -87.6530944]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b7662223774fa58b244cf7e8ee9a254e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c7c8336e60c86265a605f61bebcfaacd = $(`<div id=&quot;html_c7c8336e60c86265a605f61bebcfaacd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314559 → 5493314560 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626372&quot; target=&quot;_blank&quot;>571626372</a>, <a href=&quot;https://www.openstreetmap.org/way/571626373&quot; target=&quot;_blank&quot;>571626373</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>69.92323849387968</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_b7662223774fa58b244cf7e8ee9a254e.setContent(html_c7c8336e60c86265a605f61bebcfaacd);
            
        

        poly_line_4f5cc4734f8421f0a6547d838adbf8d0.bindPopup(popup_b7662223774fa58b244cf7e8ee9a254e)
        ;

        
    
    
            var poly_line_71c1229d0eaafd1a2835793597d48304 = L.polyline(
                [[41.905149, -87.6533276], [41.9052199, -87.6531617], [41.9049745, -87.6529498]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_cf695df4062aa07d82c8f310d63d45c2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8409260a91d562db8b24318522c3b9e8 = $(`<div id=&quot;html_8409260a91d562db8b24318522c3b9e8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314559 → 5493314565 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626372&quot; target=&quot;_blank&quot;>571626372</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>48.268241687791665</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_cf695df4062aa07d82c8f310d63d45c2.setContent(html_8409260a91d562db8b24318522c3b9e8);
            
        

        poly_line_71c1229d0eaafd1a2835793597d48304.bindPopup(popup_cf695df4062aa07d82c8f310d63d45c2)
        ;

        
    
    
            var poly_line_211b43ca2014d1277f295e4af333cc71 = L.polyline(
                [[41.9048658, -87.6530944], [41.905149, -87.6533276]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_af6099c48eec00e33bcb006fdfbfa767 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e73e23361905fcc3105251d37988ae28 = $(`<div id=&quot;html_e73e23361905fcc3105251d37988ae28&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314560 → 5493314559 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626371&quot; target=&quot;_blank&quot;>571626371</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>36.93372089003406</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_af6099c48eec00e33bcb006fdfbfa767.setContent(html_e73e23361905fcc3105251d37988ae28);
            
        

        poly_line_211b43ca2014d1277f295e4af333cc71.bindPopup(popup_af6099c48eec00e33bcb006fdfbfa767)
        ;

        
    
    
            var poly_line_1cb6d8f65776596c2e5848f2228f3c5e = L.polyline(
                [[41.9048658, -87.6530944], [41.9047886, -87.6532645], [41.9050769, -87.6534961], [41.905149, -87.6533276]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2f7bdb10b25205fe2316b32e4c7d69f3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_14ba98cb73e28de3cc9babb2d3c370d3 = $(`<div id=&quot;html_14ba98cb73e28de3cc9babb2d3c370d3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314560 → 5493314559 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626372&quot; target=&quot;_blank&quot;>571626372</a>, <a href=&quot;https://www.openstreetmap.org/way/571626373&quot; target=&quot;_blank&quot;>571626373</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>69.9232384938797</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_2f7bdb10b25205fe2316b32e4c7d69f3.setContent(html_14ba98cb73e28de3cc9babb2d3c370d3);
            
        

        poly_line_1cb6d8f65776596c2e5848f2228f3c5e.bindPopup(popup_2f7bdb10b25205fe2316b32e4c7d69f3)
        ;

        
    
    
            var poly_line_f4ae8ec29d206c391bb715c09ffae85c = L.polyline(
                [[41.9048658, -87.6530944], [41.9049238, -87.6529665], [41.9049745, -87.6529498]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_529df07d81ed91ebc6888f481a115e1b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_92170a4b61a3c6e283c3ee0293468d13 = $(`<div id=&quot;html_92170a4b61a3c6e283c3ee0293468d13&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314560 → 5493314565 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626373&quot; target=&quot;_blank&quot;>571626373</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.199241200177344</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_529df07d81ed91ebc6888f481a115e1b.setContent(html_92170a4b61a3c6e283c3ee0293468d13);
            
        

        poly_line_f4ae8ec29d206c391bb715c09ffae85c.bindPopup(popup_529df07d81ed91ebc6888f481a115e1b)
        ;

        
    
    
            var poly_line_40739fdf7d927618f0e6d8b44f6a7cd7 = L.polyline(
                [[41.9049745, -87.6529498], [41.9052199, -87.6531617], [41.905149, -87.6533276]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_53ab76b9c4163716798cc35c6a5f2a1b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a403524aadb0b8ccb540bc65f400d3d4 = $(`<div id=&quot;html_a403524aadb0b8ccb540bc65f400d3d4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314565 → 5493314559 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626372&quot; target=&quot;_blank&quot;>571626372</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>48.268241687791665</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_53ab76b9c4163716798cc35c6a5f2a1b.setContent(html_a403524aadb0b8ccb540bc65f400d3d4);
            
        

        poly_line_40739fdf7d927618f0e6d8b44f6a7cd7.bindPopup(popup_53ab76b9c4163716798cc35c6a5f2a1b)
        ;

        
    
    
            var poly_line_082b5bbf08f26ce638971c7bf8995a5a = L.polyline(
                [[41.9049745, -87.6529498], [41.9049238, -87.6529665], [41.9048658, -87.6530944]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e1560de0a2dd81d23636c65b4b0a2fbe = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ad2502fcaafece929a80cdb2c70ae6bc = $(`<div id=&quot;html_ad2502fcaafece929a80cdb2c70ae6bc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314565 → 5493314560 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626373&quot; target=&quot;_blank&quot;>571626373</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.199241200177344</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_e1560de0a2dd81d23636c65b4b0a2fbe.setContent(html_ad2502fcaafece929a80cdb2c70ae6bc);
            
        

        poly_line_082b5bbf08f26ce638971c7bf8995a5a.bindPopup(popup_e1560de0a2dd81d23636c65b4b0a2fbe)
        ;

        
    
    
            var poly_line_1acd36a63ba41ee92392fcd0d82d6686 = L.polyline(
                [[41.9049745, -87.6529498], [41.9050431, -87.652803], [41.9050544, -87.6527153]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_78309694e4c9a2d59f59dee92e28dcee = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a5f47cacecc86e9cfcdf3ab00b7018f0 = $(`<div id=&quot;html_a5f47cacecc86e9cfcdf3ab00b7018f0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314565 → 5493314567 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626373&quot; target=&quot;_blank&quot;>571626373</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.71076315183952</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_78309694e4c9a2d59f59dee92e28dcee.setContent(html_a5f47cacecc86e9cfcdf3ab00b7018f0);
            
        

        poly_line_1acd36a63ba41ee92392fcd0d82d6686.bindPopup(popup_78309694e4c9a2d59f59dee92e28dcee)
        ;

        
    
    
            var poly_line_4d7f7e8fe81d4e6ef8614bcad01e05cb = L.polyline(
                [[41.9050544, -87.6527153], [41.9053067, -87.6529105], [41.9053832, -87.6527425], [41.9052695, -87.652623]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c4af511fb29da343a2516a6e7fa39e87 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a9a7a0d20e45477efddceb37ea58a041 = $(`<div id=&quot;html_a9a7a0d20e45477efddceb37ea58a041&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314567 → 5493314569 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626369&quot; target=&quot;_blank&quot;>571626369</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>64.72330288418746</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_c4af511fb29da343a2516a6e7fa39e87.setContent(html_a9a7a0d20e45477efddceb37ea58a041);
            
        

        poly_line_4d7f7e8fe81d4e6ef8614bcad01e05cb.bindPopup(popup_c4af511fb29da343a2516a6e7fa39e87)
        ;

        
    
    
            var poly_line_cf5477af72096fa16e9193f629897690 = L.polyline(
                [[41.9050544, -87.6527153], [41.9051434, -87.6525292], [41.9052695, -87.652623]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_15d869611ec9d79562fc103c909d14b8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6847dd0acbc4b7a2c6e987473d70419d = $(`<div id=&quot;html_6847dd0acbc4b7a2c6e987473d70419d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314567 → 5493314569 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626373&quot; target=&quot;_blank&quot;>571626373</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>34.33366154692382</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_15d869611ec9d79562fc103c909d14b8.setContent(html_6847dd0acbc4b7a2c6e987473d70419d);
            
        

        poly_line_cf5477af72096fa16e9193f629897690.bindPopup(popup_15d869611ec9d79562fc103c909d14b8)
        ;

        
    
    
            var poly_line_9dc1c5dce8b7cb0e6b72a7a36614d862 = L.polyline(
                [[41.9050544, -87.6527153], [41.9050431, -87.652803], [41.9049745, -87.6529498]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9d09ddb2a682ce6c6f885a19ca4f4965 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0152648311b413060c66967af32b662d = $(`<div id=&quot;html_0152648311b413060c66967af32b662d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314567 → 5493314565 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626373&quot; target=&quot;_blank&quot;>571626373</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.71076315183952</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_9d09ddb2a682ce6c6f885a19ca4f4965.setContent(html_0152648311b413060c66967af32b662d);
            
        

        poly_line_9dc1c5dce8b7cb0e6b72a7a36614d862.bindPopup(popup_9d09ddb2a682ce6c6f885a19ca4f4965)
        ;

        
    
    
            var poly_line_dae6ed8b2471072b4b5a02fb9f72e949 = L.polyline(
                [[41.9052695, -87.652623], [41.9053427, -87.6524581]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_024d38d1b159273018981d1f3bb69ce8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_dcbed23afa353f7e6f39c12c10565a46 = $(`<div id=&quot;html_dcbed23afa353f7e6f39c12c10565a46&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314569 → 5493314570 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626373&quot; target=&quot;_blank&quot;>571626373</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>15.889657344036682</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_024d38d1b159273018981d1f3bb69ce8.setContent(html_dcbed23afa353f7e6f39c12c10565a46);
            
        

        poly_line_dae6ed8b2471072b4b5a02fb9f72e949.bindPopup(popup_024d38d1b159273018981d1f3bb69ce8)
        ;

        
    
    
            var poly_line_ff47e601aa6a19d3e4be8de7c5f18377 = L.polyline(
                [[41.9052695, -87.652623], [41.9053832, -87.6527425], [41.9053067, -87.6529105], [41.9050544, -87.6527153]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a2828dae32c0f6f11ca3a1b98795b7f5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5efe3a3c9812a9360aa1d8d96b446f44 = $(`<div id=&quot;html_5efe3a3c9812a9360aa1d8d96b446f44&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314569 → 5493314567 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626369&quot; target=&quot;_blank&quot;>571626369</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>64.72330288418746</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_a2828dae32c0f6f11ca3a1b98795b7f5.setContent(html_5efe3a3c9812a9360aa1d8d96b446f44);
            
        

        poly_line_ff47e601aa6a19d3e4be8de7c5f18377.bindPopup(popup_a2828dae32c0f6f11ca3a1b98795b7f5)
        ;

        
    
    
            var poly_line_4d3a02e08677163e5eee10caa1f86fe7 = L.polyline(
                [[41.9052695, -87.652623], [41.9051434, -87.6525292], [41.9050544, -87.6527153]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e3ab3c9d23355461964de3a469633fbb = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1f7c916602eb38fa7e148cd3204408fb = $(`<div id=&quot;html_1f7c916602eb38fa7e148cd3204408fb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314569 → 5493314567 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626373&quot; target=&quot;_blank&quot;>571626373</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>34.33366154692382</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_e3ab3c9d23355461964de3a469633fbb.setContent(html_1f7c916602eb38fa7e148cd3204408fb);
            
        

        poly_line_4d3a02e08677163e5eee10caa1f86fe7.bindPopup(popup_e3ab3c9d23355461964de3a469633fbb)
        ;

        
    
    
            var poly_line_a951eae01d62609ce623e06d2656b6dd = L.polyline(
                [[41.9053427, -87.6524581], [41.9054114, -87.6523022]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_361765a2cce5e42d80e7e565aa6a3b72 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0b8ffaaecdbb5deea7084f75e1678467 = $(`<div id=&quot;html_0b8ffaaecdbb5deea7084f75e1678467&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314570 → 5493314554 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626365&quot; target=&quot;_blank&quot;>571626365</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>14.993732155406907</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_361765a2cce5e42d80e7e565aa6a3b72.setContent(html_0b8ffaaecdbb5deea7084f75e1678467);
            
        

        poly_line_a951eae01d62609ce623e06d2656b6dd.bindPopup(popup_361765a2cce5e42d80e7e565aa6a3b72)
        ;

        
    
    
            var poly_line_48741e7b45e55fd760d61339ca3ed303 = L.polyline(
                [[41.9053427, -87.6524581], [41.9052695, -87.652623]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4476c50fd658f8bf88aff751995b80b5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a1ba638438c0a9c84e4d0a126c9725d7 = $(`<div id=&quot;html_a1ba638438c0a9c84e4d0a126c9725d7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314570 → 5493314569 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626373&quot; target=&quot;_blank&quot;>571626373</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>15.889657344036682</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_4476c50fd658f8bf88aff751995b80b5.setContent(html_a1ba638438c0a9c84e4d0a126c9725d7);
            
        

        poly_line_48741e7b45e55fd760d61339ca3ed303.bindPopup(popup_4476c50fd658f8bf88aff751995b80b5)
        ;

        
    
    
            var poly_line_3f54572fb8de8910e5ee4bdf0f4a8817 = L.polyline(
                [[41.9053427, -87.6524581], [41.9052875, -87.6524535], [41.9050762, -87.6522812], [41.905005, -87.6522232]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5b59c97ea97d07be8b7f1dc1aebf009a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_055db23b608517242168d41b822e4676 = $(`<div id=&quot;html_055db23b608517242168d41b822e4676&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314570 → 5493314555 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626367&quot; target=&quot;_blank&quot;>571626367</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>42.892057869643544</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_5b59c97ea97d07be8b7f1dc1aebf009a.setContent(html_055db23b608517242168d41b822e4676);
            
        

        poly_line_3f54572fb8de8910e5ee4bdf0f4a8817.bindPopup(popup_5b59c97ea97d07be8b7f1dc1aebf009a)
        ;

        
    
    
            var poly_line_adb2269880252e491790f16224d3c63b = L.polyline(
                [[41.9035818, -87.6522812], [41.9035797, -87.6524224], [41.9035777, -87.6525516]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fd5d63d445959acf90f62cf9b2d7063b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e408ba2922124203c1794384b47e4638 = $(`<div id=&quot;html_e408ba2922124203c1794384b47e4638&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314572 → 102713545 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24372007&quot; target=&quot;_blank&quot;>24372007</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.3827180875693</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_fd5d63d445959acf90f62cf9b2d7063b.setContent(html_e408ba2922124203c1794384b47e4638);
            
        

        poly_line_adb2269880252e491790f16224d3c63b.bindPopup(popup_fd5d63d445959acf90f62cf9b2d7063b)
        ;

        
    
    
            var poly_line_2908c19da1b9fbe16d9e381d49dc243f = L.polyline(
                [[41.9035818, -87.6522812], [41.9035997, -87.6510759], [41.9036014, -87.6509581]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7f9b0f4f7ec81ba0651dd8aabd838e39 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_138863809ed226c97972b5d7c3a85ffe = $(`<div id=&quot;html_138863809ed226c97972b5d7c3a85ffe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314572 → 264432667 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24372007&quot; target=&quot;_blank&quot;>24372007</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>109.52029279285718</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_7f9b0f4f7ec81ba0651dd8aabd838e39.setContent(html_138863809ed226c97972b5d7c3a85ffe);
            
        

        poly_line_2908c19da1b9fbe16d9e381d49dc243f.bindPopup(popup_7f9b0f4f7ec81ba0651dd8aabd838e39)
        ;

        
    
    
            var poly_line_e07cc9e9fedbba8e0e8c2b7527d4b2f2 = L.polyline(
                [[41.9035818, -87.6522812], [41.9036673, -87.6522871], [41.9037733, -87.6522911]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6cdaa6f15ff2ab1bf13784c2de025fa2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_021515d7db79f1b4aa86ad7bdf8dd82d = $(`<div id=&quot;html_021515d7db79f1b4aa86ad7bdf8dd82d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314572 → 5493314573 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626375&quot; target=&quot;_blank&quot;>571626375</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.31103676265346</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_6cdaa6f15ff2ab1bf13784c2de025fa2.setContent(html_021515d7db79f1b4aa86ad7bdf8dd82d);
            
        

        poly_line_e07cc9e9fedbba8e0e8c2b7527d4b2f2.bindPopup(popup_6cdaa6f15ff2ab1bf13784c2de025fa2)
        ;

        
    
    
            var poly_line_f2bac179882d762afe1ce7c075928108 = L.polyline(
                [[41.9037733, -87.6522911], [41.9036673, -87.6522871], [41.9035818, -87.6522812]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9894f8ebd90b0871057b595ac688db9a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0bd336f7921a2d0062fbb0b78e5a366f = $(`<div id=&quot;html_0bd336f7921a2d0062fbb0b78e5a366f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314573 → 5493314572 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626375&quot; target=&quot;_blank&quot;>571626375</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.31103676265346</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_9894f8ebd90b0871057b595ac688db9a.setContent(html_0bd336f7921a2d0062fbb0b78e5a366f);
            
        

        poly_line_f2bac179882d762afe1ce7c075928108.bindPopup(popup_9894f8ebd90b0871057b595ac688db9a)
        ;

        
    
    
            var poly_line_915d07f5d2356a2d9df43bd964535ebd = L.polyline(
                [[41.9039001, -87.6522265], [41.9040229, -87.6522719]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ee44c37a427d53f3881f3a69d12b3bc3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ba8f826eaaf7fe0ba3beb8bfb70094c0 = $(`<div id=&quot;html_ba8f826eaaf7fe0ba3beb8bfb70094c0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314576 → 5493314577 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626377&quot; target=&quot;_blank&quot;>571626377</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>14.162247065001015</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_ee44c37a427d53f3881f3a69d12b3bc3.setContent(html_ba8f826eaaf7fe0ba3beb8bfb70094c0);
            
        

        poly_line_915d07f5d2356a2d9df43bd964535ebd.bindPopup(popup_ee44c37a427d53f3881f3a69d12b3bc3)
        ;

        
    
    
            var poly_line_e8fae84e99523e19da03ae18b80ba256 = L.polyline(
                [[41.9040229, -87.6522719], [41.9039001, -87.6522265]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2ac171a6826e4360c8532906afbdda32 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_dae3f116acd2bde5f41f69f51ada79ea = $(`<div id=&quot;html_dae3f116acd2bde5f41f69f51ada79ea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314577 → 5493314576 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626377&quot; target=&quot;_blank&quot;>571626377</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>14.162247065001015</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_2ac171a6826e4360c8532906afbdda32.setContent(html_dae3f116acd2bde5f41f69f51ada79ea);
            
        

        poly_line_e8fae84e99523e19da03ae18b80ba256.bindPopup(popup_2ac171a6826e4360c8532906afbdda32)
        ;

        
    
    
            var poly_line_21f498a266315e5e68455376f89e04fd = L.polyline(
                [[41.9040229, -87.6522719], [41.9042841, -87.6525019]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_60406c6678d8ed16bb399fad276f38d4 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_79a4d2ff6f288c0e4ac9e1614b61d7fb = $(`<div id=&quot;html_79a4d2ff6f288c0e4ac9e1614b61d7fb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314577 → 5493314578 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626377&quot; target=&quot;_blank&quot;>571626377</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>34.725676414149945</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_60406c6678d8ed16bb399fad276f38d4.setContent(html_79a4d2ff6f288c0e4ac9e1614b61d7fb);
            
        

        poly_line_21f498a266315e5e68455376f89e04fd.bindPopup(popup_60406c6678d8ed16bb399fad276f38d4)
        ;

        
    
    
            var poly_line_3531059d5cdc335ad09c516ef4168149 = L.polyline(
                [[41.9040229, -87.6522719], [41.9040375, -87.6521887], [41.9040533, -87.6519391], [41.9042227, -87.6515808], [41.904259, -87.651504]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_589819ffccc2280f24d2644f171a1e49 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_801892bac00ebf637290250d6737d3f4 = $(`<div id=&quot;html_801892bac00ebf637290250d6737d3f4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314577 → 5493314586 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626376&quot; target=&quot;_blank&quot;>571626376</a>, <a href=&quot;https://www.openstreetmap.org/way/571626379&quot; target=&quot;_blank&quot;>571626379</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>70.46401003604468</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_589819ffccc2280f24d2644f171a1e49.setContent(html_801892bac00ebf637290250d6737d3f4);
            
        

        poly_line_3531059d5cdc335ad09c516ef4168149.bindPopup(popup_589819ffccc2280f24d2644f171a1e49)
        ;

        
    
    
            var poly_line_d948ada02b54e3e0bd338a9ca1c87c0e = L.polyline(
                [[41.9042841, -87.6525019], [41.9040229, -87.6522719]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6af4b948fcfd694acfb8d07a30c326ea = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2c374a1ac788b5c931efa4511752d4d9 = $(`<div id=&quot;html_2c374a1ac788b5c931efa4511752d4d9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314578 → 5493314577 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626377&quot; target=&quot;_blank&quot;>571626377</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>34.725676414149945</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_6af4b948fcfd694acfb8d07a30c326ea.setContent(html_2c374a1ac788b5c931efa4511752d4d9);
            
        

        poly_line_d948ada02b54e3e0bd338a9ca1c87c0e.bindPopup(popup_6af4b948fcfd694acfb8d07a30c326ea)
        ;

        
    
    
            var poly_line_8c9d24e1577b67f61ae89a30a9c05388 = L.polyline(
                [[41.9045151, -87.6517175], [41.905036, -87.6521517]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1c38150ee4a34870202021c067922fe0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_97bf410e25987d69433c71eaabd30227 = $(`<div id=&quot;html_97bf410e25987d69433c71eaabd30227&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314579 → 261150714 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1125567620&quot; target=&quot;_blank&quot;>1125567620</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>68.16236391724703</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Hooker Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_1c38150ee4a34870202021c067922fe0.setContent(html_97bf410e25987d69433c71eaabd30227);
            
        

        poly_line_8c9d24e1577b67f61ae89a30a9c05388.bindPopup(popup_1c38150ee4a34870202021c067922fe0)
        ;

        
    
    
            var poly_line_7642da6d850c4a41f0869c506f36c2a3 = L.polyline(
                [[41.9045151, -87.6517175], [41.904399, -87.6516207]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_cb363a352c1a00f56a8457f89cc5f912 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4d32ddd113a214eea9ebe086896fa043 = $(`<div id=&quot;html_4d32ddd113a214eea9ebe086896fa043&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314579 → 5493314584 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1125567620&quot; target=&quot;_blank&quot;>1125567620</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>15.193332347775073</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Hooker Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_cb363a352c1a00f56a8457f89cc5f912.setContent(html_4d32ddd113a214eea9ebe086896fa043);
            
        

        poly_line_7642da6d850c4a41f0869c506f36c2a3.bindPopup(popup_cb363a352c1a00f56a8457f89cc5f912)
        ;

        
    
    
            var poly_line_b1659efcf8bde8ce2c798d7d81971775 = L.polyline(
                [[41.9045151, -87.6517175], [41.9044776, -87.6517971], [41.9042774, -87.652222], [41.904238, -87.6522311], [41.9041648, -87.6521781], [41.9041557, -87.6521388], [41.9043622, -87.6516992], [41.904399, -87.6516207]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_98419d77efffa3c8670eca4d2e4788f3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c7dbc2fa8eeea13a1ea20f21fe833f64 = $(`<div id=&quot;html_c7dbc2fa8eeea13a1ea20f21fe833f64&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314579 → 5493314584 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626378&quot; target=&quot;_blank&quot;>571626378</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>117.21060809442892</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_98419d77efffa3c8670eca4d2e4788f3.setContent(html_c7dbc2fa8eeea13a1ea20f21fe833f64);
            
        

        poly_line_b1659efcf8bde8ce2c798d7d81971775.bindPopup(popup_98419d77efffa3c8670eca4d2e4788f3)
        ;

        
    
    
            var poly_line_881e8e24cf46824fe039628feef4c89d = L.polyline(
                [[41.904399, -87.6516207], [41.9045151, -87.6517175]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5ed8d7bc72eb87dd5a883bb8271bd1fd = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_de82e36fba522b60592b5ba5842fc25f = $(`<div id=&quot;html_de82e36fba522b60592b5ba5842fc25f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314584 → 5493314579 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1125567620&quot; target=&quot;_blank&quot;>1125567620</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>15.193332347775073</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Hooker Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_5ed8d7bc72eb87dd5a883bb8271bd1fd.setContent(html_de82e36fba522b60592b5ba5842fc25f);
            
        

        poly_line_881e8e24cf46824fe039628feef4c89d.bindPopup(popup_5ed8d7bc72eb87dd5a883bb8271bd1fd)
        ;

        
    
    
            var poly_line_8bce0f843163a9922575842f4b9301f8 = L.polyline(
                [[41.904399, -87.6516207], [41.9043622, -87.6516992], [41.9041557, -87.6521388], [41.9041648, -87.6521781], [41.904238, -87.6522311], [41.9042774, -87.652222], [41.9044776, -87.6517971], [41.9045151, -87.6517175]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fd498f130d544a4416453db6bc81893b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_401c8a683bec7318a08b2b5b226d2e71 = $(`<div id=&quot;html_401c8a683bec7318a08b2b5b226d2e71&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314584 → 5493314579 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626378&quot; target=&quot;_blank&quot;>571626378</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>117.21060809442892</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_fd498f130d544a4416453db6bc81893b.setContent(html_401c8a683bec7318a08b2b5b226d2e71);
            
        

        poly_line_8bce0f843163a9922575842f4b9301f8.bindPopup(popup_fd498f130d544a4416453db6bc81893b)
        ;

        
    
    
            var poly_line_1153413cffb72c788c38c3f9372c6dfd = L.polyline(
                [[41.904399, -87.6516207], [41.90436, -87.6515889]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b7b8071b4a18549c5b5354e59b2e0b83 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0e62ae0a39c6dbacfed1eff91562fed9 = $(`<div id=&quot;html_0e62ae0a39c6dbacfed1eff91562fed9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314584 → 5493314588 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1125567620&quot; target=&quot;_blank&quot;>1125567620</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>5.072677539902703</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Hooker Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_b7b8071b4a18549c5b5354e59b2e0b83.setContent(html_0e62ae0a39c6dbacfed1eff91562fed9);
            
        

        poly_line_1153413cffb72c788c38c3f9372c6dfd.bindPopup(popup_b7b8071b4a18549c5b5354e59b2e0b83)
        ;

        
    
    
            var poly_line_5988bf33ca3548ad502e8897f7ca7f1d = L.polyline(
                [[41.904259, -87.651504], [41.90436, -87.6515889]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9fd620d2795fe28226c77827bef961c8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_77de557c3c6c6865c7a74efaa57f7e55 = $(`<div id=&quot;html_77de557c3c6c6865c7a74efaa57f7e55&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314586 → 5493314588 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1125567620&quot; target=&quot;_blank&quot;>1125567620</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>13.247482039329114</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Hooker Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_9fd620d2795fe28226c77827bef961c8.setContent(html_77de557c3c6c6865c7a74efaa57f7e55);
            
        

        poly_line_5988bf33ca3548ad502e8897f7ca7f1d.bindPopup(popup_9fd620d2795fe28226c77827bef961c8)
        ;

        
    
    
            var poly_line_c1da4b653f21922731a4356b69c3cf7b = L.polyline(
                [[41.904259, -87.651504], [41.9042227, -87.6515808], [41.9040533, -87.6519391], [41.9040375, -87.6521887], [41.9040229, -87.6522719]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3666f3edad8d0639148819af9afa0f50 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_323d44cdff9a6b2a67dc9918a71dda9e = $(`<div id=&quot;html_323d44cdff9a6b2a67dc9918a71dda9e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314586 → 5493314577 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626376&quot; target=&quot;_blank&quot;>571626376</a>, <a href=&quot;https://www.openstreetmap.org/way/571626379&quot; target=&quot;_blank&quot;>571626379</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>70.46401003604468</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_3666f3edad8d0639148819af9afa0f50.setContent(html_323d44cdff9a6b2a67dc9918a71dda9e);
            
        

        poly_line_c1da4b653f21922731a4356b69c3cf7b.bindPopup(popup_3666f3edad8d0639148819af9afa0f50)
        ;

        
    
    
            var poly_line_c229fd1443965d31c90c3fac96e003e8 = L.polyline(
                [[41.904259, -87.651504], [41.9041105, -87.6513816], [41.9036871, -87.6510328], [41.9036014, -87.6509581]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ca224a1b5d0d568350e3d01c4282fec6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2b7fffaffd9083f69a89762e04446f41 = $(`<div id=&quot;html_2b7fffaffd9083f69a89762e04446f41&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314586 → 264432667 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1125567619&quot; target=&quot;_blank&quot;>1125567619</a>, <a href=&quot;https://www.openstreetmap.org/way/1125567620&quot; target=&quot;_blank&quot;>1125567620</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>85.95584020615587</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Hooker Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_ca224a1b5d0d568350e3d01c4282fec6.setContent(html_2b7fffaffd9083f69a89762e04446f41);
            
        

        poly_line_c229fd1443965d31c90c3fac96e003e8.bindPopup(popup_ca224a1b5d0d568350e3d01c4282fec6)
        ;

        
    
    
            var poly_line_b0b60019eb514299aae995a1368f316d = L.polyline(
                [[41.9045364, -87.6512143], [41.90436, -87.6515889]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_391a60c3a1cee3156992ebf49378a860 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6edfdae2bbd21b9c3bc2b15abf216f7b = $(`<div id=&quot;html_6edfdae2bbd21b9c3bc2b15abf216f7b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314587 → 5493314588 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626380&quot; target=&quot;_blank&quot;>571626380</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>36.68531626952259</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_391a60c3a1cee3156992ebf49378a860.setContent(html_6edfdae2bbd21b9c3bc2b15abf216f7b);
            
        

        poly_line_b0b60019eb514299aae995a1368f316d.bindPopup(popup_391a60c3a1cee3156992ebf49378a860)
        ;

        
    
    
            var poly_line_2b77b110ced709a59d22c5202c1ec293 = L.polyline(
                [[41.90436, -87.6515889], [41.9045364, -87.6512143]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b5d8b441f380c72865dc4dedef64e79e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3691d97e5b3b0ec6cef21609b63766fa = $(`<div id=&quot;html_3691d97e5b3b0ec6cef21609b63766fa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314588 → 5493314587 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626380&quot; target=&quot;_blank&quot;>571626380</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>36.68531626952259</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_b5d8b441f380c72865dc4dedef64e79e.setContent(html_3691d97e5b3b0ec6cef21609b63766fa);
            
        

        poly_line_2b77b110ced709a59d22c5202c1ec293.bindPopup(popup_b5d8b441f380c72865dc4dedef64e79e)
        ;

        
    
    
            var poly_line_73bab4f8bd71c3b0edec3248d292d18f = L.polyline(
                [[41.90436, -87.6515889], [41.904399, -87.6516207]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_65257adb04668d565c53ae97fc37748c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7954d68ad1451833bbb92f3b467910eb = $(`<div id=&quot;html_7954d68ad1451833bbb92f3b467910eb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314588 → 5493314584 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1125567620&quot; target=&quot;_blank&quot;>1125567620</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>5.072677539902703</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Hooker Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_65257adb04668d565c53ae97fc37748c.setContent(html_7954d68ad1451833bbb92f3b467910eb);
            
        

        poly_line_73bab4f8bd71c3b0edec3248d292d18f.bindPopup(popup_65257adb04668d565c53ae97fc37748c)
        ;

        
    
    
            var poly_line_0fcdae9629abb6e35ac4543ed9f5ca37 = L.polyline(
                [[41.90436, -87.6515889], [41.904259, -87.651504]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2dff33b08aafc680adeb36edbe47d48b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_30828590f0345de140d52cfea6031b62 = $(`<div id=&quot;html_30828590f0345de140d52cfea6031b62&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314588 → 5493314586 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1125567620&quot; target=&quot;_blank&quot;>1125567620</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>13.247482039329114</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Hooker Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_2dff33b08aafc680adeb36edbe47d48b.setContent(html_30828590f0345de140d52cfea6031b62);
            
        

        poly_line_0fcdae9629abb6e35ac4543ed9f5ca37.bindPopup(popup_2dff33b08aafc680adeb36edbe47d48b)
        ;

        
    
    
            var poly_line_b6d6fafd01b2db27c53fb1ca9448045a = L.polyline(
                [[41.9025633, -87.6526532], [41.9024628, -87.6528841], [41.9024431, -87.6529295]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6f365b01c83a7044e22148b6a961d023 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b9cdf93bb02dceee917823c045308995 = $(`<div id=&quot;html_b9cdf93bb02dceee917823c045308995&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314593 → 5493314594 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626382&quot; target=&quot;_blank&quot;>571626382</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>26.486381800099146</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_6f365b01c83a7044e22148b6a961d023.setContent(html_b9cdf93bb02dceee917823c045308995);
            
        

        poly_line_b6d6fafd01b2db27c53fb1ca9448045a.bindPopup(popup_6f365b01c83a7044e22148b6a961d023)
        ;

        
    
    
            var poly_line_249856ab049ebdb9d6fadb0f44e4243b = L.polyline(
                [[41.9024431, -87.6529295], [41.9025904, -87.6530285]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4c6055c42c428b50bcecca7d70c66a64 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_24a167dcf8c05a762e7eb4739e7f9253 = $(`<div id=&quot;html_24a167dcf8c05a762e7eb4739e7f9253&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314594 → 5493314595 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626383&quot; target=&quot;_blank&quot;>571626383</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.314006784221284</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_4c6055c42c428b50bcecca7d70c66a64.setContent(html_24a167dcf8c05a762e7eb4739e7f9253);
            
        

        poly_line_249856ab049ebdb9d6fadb0f44e4243b.bindPopup(popup_4c6055c42c428b50bcecca7d70c66a64)
        ;

        
    
    
            var poly_line_de09bc4fda4763ca516599d3ff823b80 = L.polyline(
                [[41.9024431, -87.6529295], [41.9024628, -87.6528841], [41.9025633, -87.6526532]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f5930940c79963ed07952bf15cdcaba9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_036f07198441e9e5ae9c4ec1fd8c7934 = $(`<div id=&quot;html_036f07198441e9e5ae9c4ec1fd8c7934&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314594 → 5493314593 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626382&quot; target=&quot;_blank&quot;>571626382</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>26.486381800099146</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_f5930940c79963ed07952bf15cdcaba9.setContent(html_036f07198441e9e5ae9c4ec1fd8c7934);
            
        

        poly_line_de09bc4fda4763ca516599d3ff823b80.bindPopup(popup_f5930940c79963ed07952bf15cdcaba9)
        ;

        
    
    
            var poly_line_92b5ccac61ebf35d726cedfbc22e5d30 = L.polyline(
                [[41.9024431, -87.6529295], [41.9022931, -87.6528288], [41.9022455, -87.6529142], [41.9022047, -87.6529993]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ad8a33649e66d1320725cf58d476a1ba = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_74ee71d7c35147da53cedf45495a6362 = $(`<div id=&quot;html_74ee71d7c35147da53cedf45495a6362&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314594 → 5493314597 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626383&quot; target=&quot;_blank&quot;>571626383</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>35.85309205534626</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_ad8a33649e66d1320725cf58d476a1ba.setContent(html_74ee71d7c35147da53cedf45495a6362);
            
        

        poly_line_92b5ccac61ebf35d726cedfbc22e5d30.bindPopup(popup_ad8a33649e66d1320725cf58d476a1ba)
        ;

        
    
    
            var poly_line_b103d93effc37a764ecf3d90df86f4e6 = L.polyline(
                [[41.9025904, -87.6530285], [41.9024431, -87.6529295]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_aa8946bea2888743202a1c04c601f283 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_341e36e2488a38b353820f44ba1a1f7b = $(`<div id=&quot;html_341e36e2488a38b353820f44ba1a1f7b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314595 → 5493314594 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626383&quot; target=&quot;_blank&quot;>571626383</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.314006784221284</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_aa8946bea2888743202a1c04c601f283.setContent(html_341e36e2488a38b353820f44ba1a1f7b);
            
        

        poly_line_b103d93effc37a764ecf3d90df86f4e6.bindPopup(popup_aa8946bea2888743202a1c04c601f283)
        ;

        
    
    
            var poly_line_e43f88ec12fc3ddc3caf5be6eb0246aa = L.polyline(
                [[41.9022047, -87.6529993], [41.9022455, -87.6529142], [41.9022931, -87.6528288], [41.9024431, -87.6529295]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9d946dc66201c620d5e2b7e019454af5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ca2d6f0b2217dea2de8cd9aa10555eac = $(`<div id=&quot;html_ca2d6f0b2217dea2de8cd9aa10555eac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314597 → 5493314594 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626383&quot; target=&quot;_blank&quot;>571626383</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>35.85309205534626</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_9d946dc66201c620d5e2b7e019454af5.setContent(html_ca2d6f0b2217dea2de8cd9aa10555eac);
            
        

        poly_line_e43f88ec12fc3ddc3caf5be6eb0246aa.bindPopup(popup_9d946dc66201c620d5e2b7e019454af5)
        ;

        
    
    
            var poly_line_7a279d5ce08115b6aa1f29a01b955f66 = L.polyline(
                [[41.9022047, -87.6529993], [41.9017145, -87.6525926], [41.9014349, -87.6523605]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8d85536f665034c9646e71083790f1b0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3ace67433a244aa59a2d94d14c9d2408 = $(`<div id=&quot;html_3ace67433a244aa59a2d94d14c9d2408&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314597 → 734235574 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1341661980&quot; target=&quot;_blank&quot;>1341661980</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>100.60834390249096</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Cherry Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_8d85536f665034c9646e71083790f1b0.setContent(html_3ace67433a244aa59a2d94d14c9d2408);
            
        

        poly_line_7a279d5ce08115b6aa1f29a01b955f66.bindPopup(popup_8d85536f665034c9646e71083790f1b0)
        ;

        
    
    
            var poly_line_623aee21ef8610b68fca161aee2d2ddb = L.polyline(
                [[41.9022047, -87.6529993], [41.9027821, -87.6534672], [41.9032575, -87.6538647], [41.9034213, -87.6540033], [41.9034673, -87.6540425], [41.9035536, -87.6541123]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9ddd97d3b1b77ec83b73eb28f8cdf4f2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_da64e008945b388928644d4f6069e369 = $(`<div id=&quot;html_da64e008945b388928644d4f6069e369&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314597 → 12177119505 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1341661980&quot; target=&quot;_blank&quot;>1341661980</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>176.0227753438593</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Cherry Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_9ddd97d3b1b77ec83b73eb28f8cdf4f2.setContent(html_da64e008945b388928644d4f6069e369);
            
        

        poly_line_623aee21ef8610b68fca161aee2d2ddb.bindPopup(popup_9ddd97d3b1b77ec83b73eb28f8cdf4f2)
        ;

        
    
    
            var poly_line_ac404e9c568d00820d3d5568db3cd33c = L.polyline(
                [[41.9031391, -87.6551326], [41.9032898, -87.6552536]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_baf9816e2a02a95e8a400ae660debbbd = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_216a9a9b8d0952e08b2a0c0a23946854 = $(`<div id=&quot;html_216a9a9b8d0952e08b2a0c0a23946854&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314600 → 12192087599 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273623183&quot; target=&quot;_blank&quot;>273623183</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.521240763687697</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_baf9816e2a02a95e8a400ae660debbbd.setContent(html_216a9a9b8d0952e08b2a0c0a23946854);
            
        

        poly_line_ac404e9c568d00820d3d5568db3cd33c.bindPopup(popup_baf9816e2a02a95e8a400ae660debbbd)
        ;

        
    
    
            var poly_line_05e202dba6c1fb9fff9eafbcc4c6bd5b = L.polyline(
                [[41.9031391, -87.6551326], [41.9030461, -87.655057]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f30afb114d0bf3f263ff45382a5f47d8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d4fee4a1affc2ece84dc7194ad013a98 = $(`<div id=&quot;html_d4fee4a1affc2ece84dc7194ad013a98&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314600 → 12192087596 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273623183&quot; target=&quot;_blank&quot;>273623183</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>12.086553142095907</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_f30afb114d0bf3f263ff45382a5f47d8.setContent(html_d4fee4a1affc2ece84dc7194ad013a98);
            
        

        poly_line_05e202dba6c1fb9fff9eafbcc4c6bd5b.bindPopup(popup_f30afb114d0bf3f263ff45382a5f47d8)
        ;

        
    
    
            var poly_line_cfb2db0b8691c80a9fc21d0188301cce = L.polyline(
                [[41.9031391, -87.6551326], [41.9031765, -87.6550488], [41.9031861, -87.6550273], [41.9031884, -87.6549093], [41.9030126, -87.6547423]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_53f3a0211ed396164d55ce4e577b8a82 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a701d42385cb3fe0694f80d443bda915 = $(`<div id=&quot;html_a701d42385cb3fe0694f80d443bda915&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314600 → 5493314603 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626385&quot; target=&quot;_blank&quot;>571626385</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>43.87097558496593</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_53f3a0211ed396164d55ce4e577b8a82.setContent(html_a701d42385cb3fe0694f80d443bda915);
            
        

        poly_line_cfb2db0b8691c80a9fc21d0188301cce.bindPopup(popup_53f3a0211ed396164d55ce4e577b8a82)
        ;

        
    
    
            var poly_line_e06346db8753aa9674d20f22b766b2b2 = L.polyline(
                [[41.9030126, -87.6547423], [41.9030971, -87.6545462]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fd3b420c41a30ae3a4de942baea35fad = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_51a5ba4fca9b82311349cd7059cb9afd = $(`<div id=&quot;html_51a5ba4fca9b82311349cd7059cb9afd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314603 → 5493314605 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626386&quot; target=&quot;_blank&quot;>571626386</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.752906842876108</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_fd3b420c41a30ae3a4de942baea35fad.setContent(html_51a5ba4fca9b82311349cd7059cb9afd);
            
        

        poly_line_e06346db8753aa9674d20f22b766b2b2.bindPopup(popup_fd3b420c41a30ae3a4de942baea35fad)
        ;

        
    
    
            var poly_line_382ea0d9f460d46f29eed1c378740cb8 = L.polyline(
                [[41.9030126, -87.6547423], [41.9031884, -87.6549093], [41.9031861, -87.6550273], [41.9031765, -87.6550488], [41.9031391, -87.6551326]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_562b3b61ec4fd8624659e5bf67a88473 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_42be25b1dd46e9fd4e789983412d0475 = $(`<div id=&quot;html_42be25b1dd46e9fd4e789983412d0475&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314603 → 5493314600 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626385&quot; target=&quot;_blank&quot;>571626385</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>43.87097558496593</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_562b3b61ec4fd8624659e5bf67a88473.setContent(html_42be25b1dd46e9fd4e789983412d0475);
            
        

        poly_line_382ea0d9f460d46f29eed1c378740cb8.bindPopup(popup_562b3b61ec4fd8624659e5bf67a88473)
        ;

        
    
    
            var poly_line_57d021802d37d3fcb42be61849080f03 = L.polyline(
                [[41.9030126, -87.6547423], [41.9029571, -87.6548712], [41.9029209, -87.6549552]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e48141709fffa4ed9783dc6e384af47a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f7e1e7cdae66557d03b3690062d974de = $(`<div id=&quot;html_f7e1e7cdae66557d03b3690062d974de&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314603 → 5493314606 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626386&quot; target=&quot;_blank&quot;>571626386</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.357318992585007</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_e48141709fffa4ed9783dc6e384af47a.setContent(html_f7e1e7cdae66557d03b3690062d974de);
            
        

        poly_line_57d021802d37d3fcb42be61849080f03.bindPopup(popup_e48141709fffa4ed9783dc6e384af47a)
        ;

        
    
    
            var poly_line_5cd1bce877725785a9598f2106cc1f82 = L.polyline(
                [[41.9030971, -87.6545462], [41.9030126, -87.6547423]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_97a55d4ffff7507e35167cf33e4f3e0f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e3f61925bd75100ecec8341ca5ef37fd = $(`<div id=&quot;html_e3f61925bd75100ecec8341ca5ef37fd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314605 → 5493314603 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626386&quot; target=&quot;_blank&quot;>571626386</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.752906842876108</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_97a55d4ffff7507e35167cf33e4f3e0f.setContent(html_e3f61925bd75100ecec8341ca5ef37fd);
            
        

        poly_line_5cd1bce877725785a9598f2106cc1f82.bindPopup(popup_97a55d4ffff7507e35167cf33e4f3e0f)
        ;

        
    
    
            var poly_line_84e4421f5c8e57cf3872a2e50ff593e2 = L.polyline(
                [[41.9029209, -87.6549552], [41.9029782, -87.6550018]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3e8c16e086e60410ddcc582f588fb04a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_16b71db5c582a3ad2358eed39b9afccf = $(`<div id=&quot;html_16b71db5c582a3ad2358eed39b9afccf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314606 → 5493314609 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273623183&quot; target=&quot;_blank&quot;>273623183</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.447765363227137</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_3e8c16e086e60410ddcc582f588fb04a.setContent(html_16b71db5c582a3ad2358eed39b9afccf);
            
        

        poly_line_84e4421f5c8e57cf3872a2e50ff593e2.bindPopup(popup_3e8c16e086e60410ddcc582f588fb04a)
        ;

        
    
    
            var poly_line_1345c291108c99e91db9d3bc2bff1e53 = L.polyline(
                [[41.9029209, -87.6549552], [41.9025431, -87.654648]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8828ac735be7ee2a4b70d4f700385d97 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b9b9dbc359d5d38456fe3f821d1c93d7 = $(`<div id=&quot;html_b9b9dbc359d5d38456fe3f821d1c93d7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314606 → 5493314490 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273623183&quot; target=&quot;_blank&quot;>273623183</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>49.103720692592546</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_8828ac735be7ee2a4b70d4f700385d97.setContent(html_b9b9dbc359d5d38456fe3f821d1c93d7);
            
        

        poly_line_1345c291108c99e91db9d3bc2bff1e53.bindPopup(popup_8828ac735be7ee2a4b70d4f700385d97)
        ;

        
    
    
            var poly_line_23585361c6101fa1471b04fc1fdf540d = L.polyline(
                [[41.9029209, -87.6549552], [41.9029571, -87.6548712], [41.9030126, -87.6547423]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0b4325987dca1a0a48eecb50f0269836 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f43337b66a2d84375e9b4785c944fa42 = $(`<div id=&quot;html_f43337b66a2d84375e9b4785c944fa42&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314606 → 5493314603 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626386&quot; target=&quot;_blank&quot;>571626386</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.357318992585007</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_0b4325987dca1a0a48eecb50f0269836.setContent(html_f43337b66a2d84375e9b4785c944fa42);
            
        

        poly_line_23585361c6101fa1471b04fc1fdf540d.bindPopup(popup_0b4325987dca1a0a48eecb50f0269836)
        ;

        
    
    
            var poly_line_39c2a538964758d87a1b593b213f6544 = L.polyline(
                [[41.9023711, -87.6550118], [41.9023053, -87.655152]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_81af8dfe633b0e9bebd2467b3f268551 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b7e0f9428a5d29b309810dddabfd5268 = $(`<div id=&quot;html_b7e0f9428a5d29b309810dddabfd5268&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314607 → 12192087494 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626389&quot; target=&quot;_blank&quot;>571626389</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>13.71729268316996</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_81af8dfe633b0e9bebd2467b3f268551.setContent(html_b7e0f9428a5d29b309810dddabfd5268);
            
        

        poly_line_39c2a538964758d87a1b593b213f6544.bindPopup(popup_81af8dfe633b0e9bebd2467b3f268551)
        ;

        
    
    
            var poly_line_f111ae1353c2bc03d270039c44296195 = L.polyline(
                [[41.9023711, -87.6550118], [41.9025071, -87.6547206], [41.9025431, -87.654648]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_36b911225755056bcce7bd4a8bd3de84 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4306a6c1ac1aa78cc05e90f6a7d4164d = $(`<div id=&quot;html_4306a6c1ac1aa78cc05e90f6a7d4164d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314607 → 5493314490 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317315926&quot; target=&quot;_blank&quot;>1317315926</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>35.67141999573894</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_36b911225755056bcce7bd4a8bd3de84.setContent(html_4306a6c1ac1aa78cc05e90f6a7d4164d);
            
        

        poly_line_f111ae1353c2bc03d270039c44296195.bindPopup(popup_36b911225755056bcce7bd4a8bd3de84)
        ;

        
    
    
            var poly_line_18f9bb03268a36c7303ac16a78209713 = L.polyline(
                [[41.9028148, -87.6553578], [41.9023711, -87.6550118]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_984a0f8db3848395a9d018f9ad6193fd = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ae3a9f105541d341342603ed539f5f6a = $(`<div id=&quot;html_ae3a9f105541d341342603ed539f5f6a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314608 → 5493314607 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626388&quot; target=&quot;_blank&quot;>571626388</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>57.045021044839814</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_984a0f8db3848395a9d018f9ad6193fd.setContent(html_ae3a9f105541d341342603ed539f5f6a);
            
        

        poly_line_18f9bb03268a36c7303ac16a78209713.bindPopup(popup_984a0f8db3848395a9d018f9ad6193fd)
        ;

        
    
    
            var poly_line_420c65058b66dcfd6ddc96f8a913aa05 = L.polyline(
                [[41.9028148, -87.6553578], [41.9027733, -87.6555299]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_aad90d905c4ea4528f11c140005897b5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9d06cb90899a9eeeec30dd1b076dbd5b = $(`<div id=&quot;html_9d06cb90899a9eeeec30dd1b076dbd5b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314608 → 12192087492 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317315925&quot; target=&quot;_blank&quot;>1317315925</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>14.97191476220629</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_aad90d905c4ea4528f11c140005897b5.setContent(html_9d06cb90899a9eeeec30dd1b076dbd5b);
            
        

        poly_line_420c65058b66dcfd6ddc96f8a913aa05.bindPopup(popup_aad90d905c4ea4528f11c140005897b5)
        ;

        
    
    
            var poly_line_bd3cb9ebc6cc9a1148dfba92ad3aedd8 = L.polyline(
                [[41.9029782, -87.6550018], [41.9030461, -87.655057]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fbfa79008335b09cf5dea611e40448c5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_13fdc3aff6098ba79a2adc14c04f381b = $(`<div id=&quot;html_13fdc3aff6098ba79a2adc14c04f381b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314609 → 12192087596 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273623183&quot; target=&quot;_blank&quot;>273623183</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>8.824652242322697</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_fbfa79008335b09cf5dea611e40448c5.setContent(html_13fdc3aff6098ba79a2adc14c04f381b);
            
        

        poly_line_bd3cb9ebc6cc9a1148dfba92ad3aedd8.bindPopup(popup_fbfa79008335b09cf5dea611e40448c5)
        ;

        
    
    
            var poly_line_2ceb61025a439f8e6ac6bdcb40e35843 = L.polyline(
                [[41.9029782, -87.6550018], [41.9029209, -87.6549552]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f50c2f560c686bf267797e94357f2ff9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_22f35eed6695ddec116c78c163609926 = $(`<div id=&quot;html_22f35eed6695ddec116c78c163609926&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314609 → 5493314606 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273623183&quot; target=&quot;_blank&quot;>273623183</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.447765363227137</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_f50c2f560c686bf267797e94357f2ff9.setContent(html_22f35eed6695ddec116c78c163609926);
            
        

        poly_line_2ceb61025a439f8e6ac6bdcb40e35843.bindPopup(popup_f50c2f560c686bf267797e94357f2ff9)
        ;

        
    
    
            var poly_line_3a8924eee25e198a9eed4184036d2bb1 = L.polyline(
                [[41.9029782, -87.6550018], [41.9029435, -87.6550915], [41.9028148, -87.6553578]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e32188d8acf135aba12b2c81d87d7701 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e2adf4c2ee8c06fb1a6ee2a977f948fd = $(`<div id=&quot;html_e2adf4c2ee8c06fb1a6ee2a977f948fd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314609 → 5493314608 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626388&quot; target=&quot;_blank&quot;>571626388</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>34.644115876970844</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_e32188d8acf135aba12b2c81d87d7701.setContent(html_e2adf4c2ee8c06fb1a6ee2a977f948fd);
            
        

        poly_line_3a8924eee25e198a9eed4184036d2bb1.bindPopup(popup_e32188d8acf135aba12b2c81d87d7701)
        ;

        
    
    
            var poly_line_4606f76b3e7c41234f8786a56e56baee = L.polyline(
                [[41.902373, -87.6559019], [41.9021763, -87.6557733], [41.9020857, -87.6556197]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_374206a5219579bdf6a1ad38ae70bd3d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4b01da009164464daca3fa82db10b176 = $(`<div id=&quot;html_4b01da009164464daca3fa82db10b176&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493314612 → 5493314489 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626389&quot; target=&quot;_blank&quot;>571626389</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>40.544099800667155</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_374206a5219579bdf6a1ad38ae70bd3d.setContent(html_4b01da009164464daca3fa82db10b176);
            
        

        poly_line_4606f76b3e7c41234f8786a56e56baee.bindPopup(popup_374206a5219579bdf6a1ad38ae70bd3d)
        ;

        
    
    
            var poly_line_2c9d15f0754450f343bda293aacd432e = L.polyline(
                [[41.9088172, -87.649289], [41.90878, -87.6492573], [41.9087848, -87.6489836], [41.908911, -87.64899], [41.9089053, -87.6492732], [41.9088172, -87.649289]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c0aee8e45a116778cf77992ce112f9c9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8efcdbe155a6aca3c26a3bf2cab2e1ac = $(`<div id=&quot;html_8efcdbe155a6aca3c26a3bf2cab2e1ac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322729 → 5493322729 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571627740&quot; target=&quot;_blank&quot;>571627740</a>, <a href=&quot;https://www.openstreetmap.org/way/571627741&quot; target=&quot;_blank&quot;>571627741</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>74.92372283217915</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_c0aee8e45a116778cf77992ce112f9c9.setContent(html_8efcdbe155a6aca3c26a3bf2cab2e1ac);
            
        

        poly_line_2c9d15f0754450f343bda293aacd432e.bindPopup(popup_c0aee8e45a116778cf77992ce112f9c9)
        ;

        
    
    
            var poly_line_a24a3e97eae5089457a4439621b84d18 = L.polyline(
                [[41.9088172, -87.649289], [41.9088166, -87.6493758], [41.908816, -87.6494504]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6ae7c5468e4b19253db2306b80e20d0b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d461baf06e7750e5ddfe8df031c8f10f = $(`<div id=&quot;html_d461baf06e7750e5ddfe8df031c8f10f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322729 → 5493322730 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571627742&quot; target=&quot;_blank&quot;>571627742</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>13.356900716755844</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_6ae7c5468e4b19253db2306b80e20d0b.setContent(html_d461baf06e7750e5ddfe8df031c8f10f);
            
        

        poly_line_a24a3e97eae5089457a4439621b84d18.bindPopup(popup_6ae7c5468e4b19253db2306b80e20d0b)
        ;

        
    
    
            var poly_line_566ff64e404c608e09957a071bf61178 = L.polyline(
                [[41.908816, -87.6494504], [41.909335, -87.6494643]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f030746c73f7c6fde2c44fe676a9b51f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_661340501d9f950bce547fb2828b8234 = $(`<div id=&quot;html_661340501d9f950bce547fb2828b8234&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322730 → 5493322738 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24103945&quot; target=&quot;_blank&quot;>24103945</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>57.72171046180293</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Dayton Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_f030746c73f7c6fde2c44fe676a9b51f.setContent(html_661340501d9f950bce547fb2828b8234);
            
        

        poly_line_566ff64e404c608e09957a071bf61178.bindPopup(popup_f030746c73f7c6fde2c44fe676a9b51f)
        ;

        
    
    
            var poly_line_dd7b289d3d1ebd81e81bab63e66c981f = L.polyline(
                [[41.908816, -87.6494504], [41.9086361, -87.6494456], [41.9085599, -87.6494436]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_70289d0c6fe38464b10a025fe092ecfb = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5b6c869e78623da6f9cb2bef1e39bae6 = $(`<div id=&quot;html_5b6c869e78623da6f9cb2bef1e39bae6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322730 → 261193487 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24103945&quot; target=&quot;_blank&quot;>24103945</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>28.48262045887374</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Dayton Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_70289d0c6fe38464b10a025fe092ecfb.setContent(html_5b6c869e78623da6f9cb2bef1e39bae6);
            
        

        poly_line_dd7b289d3d1ebd81e81bab63e66c981f.bindPopup(popup_70289d0c6fe38464b10a025fe092ecfb)
        ;

        
    
    
            var poly_line_b3ee074038aecffe0d7956b4509899b6 = L.polyline(
                [[41.908816, -87.6494504], [41.9088166, -87.6493758], [41.9088172, -87.649289]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_214ffae0a90686a3d67298dde31c8b7e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e34ba1982db4258ea8dc327fd3d131fe = $(`<div id=&quot;html_e34ba1982db4258ea8dc327fd3d131fe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322730 → 5493322729 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571627742&quot; target=&quot;_blank&quot;>571627742</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>13.356900716755844</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_214ffae0a90686a3d67298dde31c8b7e.setContent(html_e34ba1982db4258ea8dc327fd3d131fe);
            
        

        poly_line_b3ee074038aecffe0d7956b4509899b6.bindPopup(popup_214ffae0a90686a3d67298dde31c8b7e)
        ;

        
    
    
            var poly_line_ca67f8b80247feff6eddc873493830d3 = L.polyline(
                [[41.9093209, -87.6510689], [41.9093588, -87.6510702]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4de58a6a3360767ada6e21bf5f0c2f2b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_df23b5245f37540cf1b78611dbffe098 = $(`<div id=&quot;html_df23b5245f37540cf1b78611dbffe098&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322737 → 5493322739 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24111763&quot; target=&quot;_blank&quot;>24111763</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>4.215666497661145</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Fremont Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_4de58a6a3360767ada6e21bf5f0c2f2b.setContent(html_df23b5245f37540cf1b78611dbffe098);
            
        

        poly_line_ca67f8b80247feff6eddc873493830d3.bindPopup(popup_4de58a6a3360767ada6e21bf5f0c2f2b)
        ;

        
    
    
            var poly_line_a0fc9505dd66a4e77275be8c361188a6 = L.polyline(
                [[41.9093209, -87.6510689], [41.9092281, -87.6510659]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_83585bb7915e9f2de70325ee8671ad8e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_770ad35342595e1004e7f29a66b7465e = $(`<div id=&quot;html_770ad35342595e1004e7f29a66b7465e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322737 → 5493322742 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24111763&quot; target=&quot;_blank&quot;>24111763</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>10.321889637417225</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Fremont Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_83585bb7915e9f2de70325ee8671ad8e.setContent(html_770ad35342595e1004e7f29a66b7465e);
            
        

        poly_line_a0fc9505dd66a4e77275be8c361188a6.bindPopup(popup_83585bb7915e9f2de70325ee8671ad8e)
        ;

        
    
    
            var poly_line_7867b2e7f2bd9fe7474b243c74a6b046 = L.polyline(
                [[41.9093209, -87.6510689], [41.9093218, -87.6509645], [41.9093247, -87.6506328], [41.9093295, -87.6502821]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6a348a377b10f613a6589e1aca82ebb1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_bda98c65352e8171e40b33e17ba937e4 = $(`<div id=&quot;html_bda98c65352e8171e40b33e17ba937e4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322737 → 12623429753 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571627746&quot; target=&quot;_blank&quot;>571627746</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>65.1164173886656</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_6a348a377b10f613a6589e1aca82ebb1.setContent(html_bda98c65352e8171e40b33e17ba937e4);
            
        

        poly_line_7867b2e7f2bd9fe7474b243c74a6b046.bindPopup(popup_6a348a377b10f613a6589e1aca82ebb1)
        ;

        
    
    
            var poly_line_e7b8fd193c9542884991bce517679d7b = L.polyline(
                [[41.909335, -87.6494643], [41.9098513, -87.649478]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_af284c9204f72528558e1747cc45f415 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5bb7db7ca72c7e23e5443ecc15c14270 = $(`<div id=&quot;html_5bb7db7ca72c7e23e5443ecc15c14270&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322738 → 261185404 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24103945&quot; target=&quot;_blank&quot;>24103945</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>57.421214334717966</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Dayton Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_af284c9204f72528558e1747cc45f415.setContent(html_5bb7db7ca72c7e23e5443ecc15c14270);
            
        

        poly_line_e7b8fd193c9542884991bce517679d7b.bindPopup(popup_af284c9204f72528558e1747cc45f415)
        ;

        
    
    
            var poly_line_c4b8401db4ceba5569920d04d76ccdc9 = L.polyline(
                [[41.909335, -87.6494643], [41.908816, -87.6494504]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_baeb858a7d2f05b840005d2266d73a30 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d23c7f4c9a9f3c8218c7b8eb2038daef = $(`<div id=&quot;html_d23c7f4c9a9f3c8218c7b8eb2038daef&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322738 → 5493322730 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24103945&quot; target=&quot;_blank&quot;>24103945</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>57.72171046180293</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Dayton Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_baeb858a7d2f05b840005d2266d73a30.setContent(html_d23c7f4c9a9f3c8218c7b8eb2038daef);
            
        

        poly_line_c4b8401db4ceba5569920d04d76ccdc9.bindPopup(popup_baeb858a7d2f05b840005d2266d73a30)
        ;

        
    
    
            var poly_line_3add6b2f8a8410db18842d3284fa6de0 = L.polyline(
                [[41.909335, -87.6494643], [41.9093342, -87.6495512], [41.9093348, -87.6499674]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_aaa6ab809b85ee3984f9bec3273638d5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d433ea4d87fa178d083b14e35000257b = $(`<div id=&quot;html_d433ea4d87fa178d083b14e35000257b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322738 → 12623429754 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1363343808&quot; target=&quot;_blank&quot;>1363343808</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>41.63298770520977</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_aaa6ab809b85ee3984f9bec3273638d5.setContent(html_d433ea4d87fa178d083b14e35000257b);
            
        

        poly_line_3add6b2f8a8410db18842d3284fa6de0.bindPopup(popup_aaa6ab809b85ee3984f9bec3273638d5)
        ;

        
    
    
            var poly_line_7876fb7a789dc6d0548438217378b574 = L.polyline(
                [[41.9093588, -87.6510702], [41.9098248, -87.6510854]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_40b8ca418112552878f4d76af276a847 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ffd0fa8515b9e91845496024ef26eac7 = $(`<div id=&quot;html_ffd0fa8515b9e91845496024ef26eac7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322739 → 261185411 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24111763&quot; target=&quot;_blank&quot;>24111763</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>51.83217314006734</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Fremont Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_40b8ca418112552878f4d76af276a847.setContent(html_ffd0fa8515b9e91845496024ef26eac7);
            
        

        poly_line_7876fb7a789dc6d0548438217378b574.bindPopup(popup_40b8ca418112552878f4d76af276a847)
        ;

        
    
    
            var poly_line_48ffc52c4b924c80772de5bf9719ceca = L.polyline(
                [[41.9093588, -87.6510702], [41.9093209, -87.6510689]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f8d3c2949378d25a9fa8a6c32397c7c9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6dc851c8e4927a684dbf9e24917770d7 = $(`<div id=&quot;html_6dc851c8e4927a684dbf9e24917770d7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322739 → 5493322737 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24111763&quot; target=&quot;_blank&quot;>24111763</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>4.215666497661145</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Fremont Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_f8d3c2949378d25a9fa8a6c32397c7c9.setContent(html_6dc851c8e4927a684dbf9e24917770d7);
            
        

        poly_line_48ffc52c4b924c80772de5bf9719ceca.bindPopup(popup_f8d3c2949378d25a9fa8a6c32397c7c9)
        ;

        
    
    
            var poly_line_1d12fe07929d85061cc5f58660f962ac = L.polyline(
                [[41.9093387, -87.6519431], [41.9093564, -87.6511745], [41.9093588, -87.6510702]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3930982c0751e7fe92be17d59c80bbc8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4a19e14e64e0b7792d1145f873d62f74 = $(`<div id=&quot;html_4a19e14e64e0b7792d1145f873d62f74&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322740 → 5493322739 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571627747&quot; target=&quot;_blank&quot;>571627747</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>72.26849914803829</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_3930982c0751e7fe92be17d59c80bbc8.setContent(html_4a19e14e64e0b7792d1145f873d62f74);
            
        

        poly_line_1d12fe07929d85061cc5f58660f962ac.bindPopup(popup_3930982c0751e7fe92be17d59c80bbc8)
        ;

        
    
    
            var poly_line_f1258047dc47dd19b47b6fda84e0ee83 = L.polyline(
                [[41.9093387, -87.6519431], [41.9093096, -87.6519348], [41.9092146, -87.6518587]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_84f149af840c1692537074809fe66a36 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6ac031d64e14b11a5c26d27982c2f786 = $(`<div id=&quot;html_6ac031d64e14b11a5c26d27982c2f786&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322740 → 5493322741 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571627749&quot; target=&quot;_blank&quot;>571627749</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>15.60606469692108</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_84f149af840c1692537074809fe66a36.setContent(html_6ac031d64e14b11a5c26d27982c2f786);
            
        

        poly_line_f1258047dc47dd19b47b6fda84e0ee83.bindPopup(popup_84f149af840c1692537074809fe66a36)
        ;

        
    
    
            var poly_line_bdb6076e2aee0f86b3973dc4c12d38be = L.polyline(
                [[41.9093387, -87.6519431], [41.9094498, -87.6519748], [41.9097416, -87.6519854], [41.9098064, -87.6519877]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_378dc995bf5afdd2cc3d5faff490c5d7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_659aec676bf1c822f37738d7c707469c = $(`<div id=&quot;html_659aec676bf1c822f37738d7c707469c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322740 → 5493322746 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571627749&quot; target=&quot;_blank&quot;>571627749</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>52.29574838850618</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_378dc995bf5afdd2cc3d5faff490c5d7.setContent(html_659aec676bf1c822f37738d7c707469c);
            
        

        poly_line_bdb6076e2aee0f86b3973dc4c12d38be.bindPopup(popup_378dc995bf5afdd2cc3d5faff490c5d7)
        ;

        
    
    
            var poly_line_98ec0204d052492ce8aa59a04c6c183e = L.polyline(
                [[41.9092146, -87.6518587], [41.9091083, -87.6517734]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_85c618c6b1b64b4ac91c5dd1816f96e3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f7e79592c061b04e29dc5ee50733eae7 = $(`<div id=&quot;html_f7e79592c061b04e29dc5ee50733eae7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322741 → 5493322743 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571627749&quot; target=&quot;_blank&quot;>571627749</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>13.767318724281292</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_85c618c6b1b64b4ac91c5dd1816f96e3.setContent(html_f7e79592c061b04e29dc5ee50733eae7);
            
        

        poly_line_98ec0204d052492ce8aa59a04c6c183e.bindPopup(popup_85c618c6b1b64b4ac91c5dd1816f96e3)
        ;

        
    
    
            var poly_line_00e9ddc6553735d1fb1299675be3d04f = L.polyline(
                [[41.9092146, -87.6518587], [41.9093096, -87.6519348], [41.9093387, -87.6519431]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ce2cb9ad323d228370b8fc77d15365db = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_58df0f4da1699b780565d18fdc62e42b = $(`<div id=&quot;html_58df0f4da1699b780565d18fdc62e42b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322741 → 5493322740 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571627749&quot; target=&quot;_blank&quot;>571627749</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>15.60606469692108</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_ce2cb9ad323d228370b8fc77d15365db.setContent(html_58df0f4da1699b780565d18fdc62e42b);
            
        

        poly_line_00e9ddc6553735d1fb1299675be3d04f.bindPopup(popup_ce2cb9ad323d228370b8fc77d15365db)
        ;

        
    
    
            var poly_line_d23cda776bbe13c993f059ca51ac1b52 = L.polyline(
                [[41.9092281, -87.6510659], [41.9093209, -87.6510689]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_293babd912c137f9b6d3671db317a396 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d95ad6f2e8a3e38dcd760de8fa482583 = $(`<div id=&quot;html_d95ad6f2e8a3e38dcd760de8fa482583&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322742 → 5493322737 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24111763&quot; target=&quot;_blank&quot;>24111763</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>10.321889637417225</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Fremont Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_293babd912c137f9b6d3671db317a396.setContent(html_d95ad6f2e8a3e38dcd760de8fa482583);
            
        

        poly_line_d23cda776bbe13c993f059ca51ac1b52.bindPopup(popup_293babd912c137f9b6d3671db317a396)
        ;

        
    
    
            var poly_line_83fb1196dbb66f5fff02f35c576d6708 = L.polyline(
                [[41.9092281, -87.6510659], [41.9091203, -87.6510624]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d08ffbee43b24e513b2b912aa093f057 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ed78231cfcda4048bc829a8fd9c231cb = $(`<div id=&quot;html_ed78231cfcda4048bc829a8fd9c231cb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322742 → 2204462579 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24111763&quot; target=&quot;_blank&quot;>24111763</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>11.990328625008704</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Fremont Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_d08ffbee43b24e513b2b912aa093f057.setContent(html_ed78231cfcda4048bc829a8fd9c231cb);
            
        

        poly_line_83fb1196dbb66f5fff02f35c576d6708.bindPopup(popup_d08ffbee43b24e513b2b912aa093f057)
        ;

        
    
    
            var poly_line_9f40fd87774d22c3ac3cf04d26b2afe3 = L.polyline(
                [[41.9092281, -87.6510659], [41.9092263, -87.6511703], [41.9092146, -87.6518587]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_722d959249f9f2718c6c254abb3ca263 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_da839f752a8781659dd007ab25483043 = $(`<div id=&quot;html_da839f752a8781659dd007ab25483043&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322742 → 5493322741 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571627748&quot; target=&quot;_blank&quot;>571627748</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>65.62282446703492</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_722d959249f9f2718c6c254abb3ca263.setContent(html_da839f752a8781659dd007ab25483043);
            
        

        poly_line_9f40fd87774d22c3ac3cf04d26b2afe3.bindPopup(popup_722d959249f9f2718c6c254abb3ca263)
        ;

        
    
    
            var poly_line_5dbc8fba7e3e509a08196ce422770462 = L.polyline(
                [[41.9091083, -87.6517734], [41.9091068, -87.651864]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_61fd79176bb91efa634451b5a7fcdc73 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f005015bfc5a0c76e13229ee79b39875 = $(`<div id=&quot;html_f005015bfc5a0c76e13229ee79b39875&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322743 → 2204462548 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/210367269&quot; target=&quot;_blank&quot;>210367269</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.499184433684339</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_61fd79176bb91efa634451b5a7fcdc73.setContent(html_f005015bfc5a0c76e13229ee79b39875);
            
        

        poly_line_5dbc8fba7e3e509a08196ce422770462.bindPopup(popup_61fd79176bb91efa634451b5a7fcdc73)
        ;

        
    
    
            var poly_line_3ae2bccf53f72a9332a85ca41e8984f6 = L.polyline(
                [[41.9091083, -87.6517734], [41.9092146, -87.6518587]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_94f8b5ac16f5957845beb454c0fb0768 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3daae0c1269441cdfd8fa8c57b5cc508 = $(`<div id=&quot;html_3daae0c1269441cdfd8fa8c57b5cc508&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322743 → 5493322741 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571627749&quot; target=&quot;_blank&quot;>571627749</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>13.767318724281292</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_94f8b5ac16f5957845beb454c0fb0768.setContent(html_3daae0c1269441cdfd8fa8c57b5cc508);
            
        

        poly_line_3ae2bccf53f72a9332a85ca41e8984f6.bindPopup(popup_94f8b5ac16f5957845beb454c0fb0768)
        ;

        
    
    
            var poly_line_c169a99e0672b3c65c647c5fd828df51 = L.polyline(
                [[41.9091083, -87.6517734], [41.9091185, -87.6511669], [41.9091203, -87.6510624]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_192db5a386844fdcf684153dc81a500c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_14b0865c9ec1c7f7a753d3965de03772 = $(`<div id=&quot;html_14b0865c9ec1c7f7a753d3965de03772&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322743 → 2204462579 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/210367269&quot; target=&quot;_blank&quot;>210367269</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>58.851781016304685</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_192db5a386844fdcf684153dc81a500c.setContent(html_14b0865c9ec1c7f7a753d3965de03772);
            
        

        poly_line_c169a99e0672b3c65c647c5fd828df51.bindPopup(popup_192db5a386844fdcf684153dc81a500c)
        ;

        
    
    
            var poly_line_4adf1b61b0bc4df41a1b716e07665532 = L.polyline(
                [[41.9098064, -87.6519877], [41.9097969, -87.6524501]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f68a1891a25fcdca831f00192b9a23ff = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c67ba6fc33f6f35be6b279eb4488925c = $(`<div id=&quot;html_c67ba6fc33f6f35be6b279eb4488925c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322746 → 2204462531 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24083761&quot; target=&quot;_blank&quot;>24083761</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>38.27867784453977</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Weed Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_f68a1891a25fcdca831f00192b9a23ff.setContent(html_c67ba6fc33f6f35be6b279eb4488925c);
            
        

        poly_line_4adf1b61b0bc4df41a1b716e07665532.bindPopup(popup_f68a1891a25fcdca831f00192b9a23ff)
        ;

        
    
    
            var poly_line_f254b80fc52991b1116157f5485b2150 = L.polyline(
                [[41.9098064, -87.6519877], [41.9098089, -87.6518682]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a6d3e7750806c8a94e6c7537db4719b0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c567257994e9780259265c37b9eb01a2 = $(`<div id=&quot;html_c567257994e9780259265c37b9eb01a2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322746 → 10941231093 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24083761&quot; target=&quot;_blank&quot;>24083761</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>9.892659662755253</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Weed Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_a6d3e7750806c8a94e6c7537db4719b0.setContent(html_c567257994e9780259265c37b9eb01a2);
            
        

        poly_line_f254b80fc52991b1116157f5485b2150.bindPopup(popup_a6d3e7750806c8a94e6c7537db4719b0)
        ;

        
    
    
            var poly_line_45e2ed9537a914835ca278c7626d1e7f = L.polyline(
                [[41.9098064, -87.6519877], [41.9097416, -87.6519854], [41.9094498, -87.6519748], [41.9093387, -87.6519431]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_87f6800b0b2965369d7a195faf31aae5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2f4ce106bbc4cf9de108a5073cb9f3e2 = $(`<div id=&quot;html_2f4ce106bbc4cf9de108a5073cb9f3e2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322746 → 5493322740 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571627749&quot; target=&quot;_blank&quot;>571627749</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>52.29574838850618</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_87f6800b0b2965369d7a195faf31aae5.setContent(html_2f4ce106bbc4cf9de108a5073cb9f3e2);
            
        

        poly_line_45e2ed9537a914835ca278c7626d1e7f.bindPopup(popup_87f6800b0b2965369d7a195faf31aae5)
        ;

        
    
    
            var poly_line_9214905005b90ca2725e613e94c0096f = L.polyline(
                [[41.9103564, -87.6513915], [41.9103484, -87.651878]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b198ce29fb3b8eb00f8e5c696abe5bf0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4f5900d92b47304f3670b939127cf3f6 = $(`<div id=&quot;html_4f5900d92b47304f3670b939127cf3f6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322750 → 10941231092 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/231835387&quot; target=&quot;_blank&quot;>231835387</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>40.26787985995493</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_b198ce29fb3b8eb00f8e5c696abe5bf0.setContent(html_4f5900d92b47304f3670b939127cf3f6);
            
        

        poly_line_9214905005b90ca2725e613e94c0096f.bindPopup(popup_b198ce29fb3b8eb00f8e5c696abe5bf0)
        ;

        
    
    
            var poly_line_5ae9c92b84c4956a6960359b2bdff549 = L.polyline(
                [[41.9103564, -87.6513915], [41.9103595, -87.6512066], [41.9103612, -87.651103]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_55d39b555077fa2659fd39225e94ffb9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fd0715bd29cea4e79a1f57296fef0139 = $(`<div id=&quot;html_fd0715bd29cea4e79a1f57296fef0139&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322750 → 2401648293 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/231835387&quot; target=&quot;_blank&quot;>231835387</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>23.879444373514076</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_55d39b555077fa2659fd39225e94ffb9.setContent(html_fd0715bd29cea4e79a1f57296fef0139);
            
        

        poly_line_5ae9c92b84c4956a6960359b2bdff549.bindPopup(popup_55d39b555077fa2659fd39225e94ffb9)
        ;

        
    
    
            var poly_line_d4bbee65a9915a20fef92e5a307b392a = L.polyline(
                [[41.9103564, -87.6513915], [41.9106917, -87.6514013], [41.9107321, -87.6513528], [41.9107849, -87.6513547], [41.9108751, -87.6513579]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c2003b8abc68a1a18884d28361d1c1d8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_29f828601692ee9aab219a93ed2b2c84 = $(`<div id=&quot;html_29f828601692ee9aab219a93ed2b2c84&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322750 → 12195807199 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571627750&quot; target=&quot;_blank&quot;>571627750</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>59.22295659366793</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_c2003b8abc68a1a18884d28361d1c1d8.setContent(html_29f828601692ee9aab219a93ed2b2c84);
            
        

        poly_line_d4bbee65a9915a20fef92e5a307b392a.bindPopup(popup_c2003b8abc68a1a18884d28361d1c1d8)
        ;

        
    
    
            var poly_line_5312706fec598486ad7d0beea90e5f5a = L.polyline(
                [[41.9102411, -87.6510991], [41.9103612, -87.651103]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_30f813d2b4932ba2e86e6e78456273e4 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_cdef6ae043e7028c95beee303ee378f2 = $(`<div id=&quot;html_cdef6ae043e7028c95beee303ee378f2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322751 → 2401648293 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24111763&quot; target=&quot;_blank&quot;>24111763</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>13.358428505729847</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Fremont Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_30f813d2b4932ba2e86e6e78456273e4.setContent(html_cdef6ae043e7028c95beee303ee378f2);
            
        

        poly_line_5312706fec598486ad7d0beea90e5f5a.bindPopup(popup_30f813d2b4932ba2e86e6e78456273e4)
        ;

        
    
    
            var poly_line_81c872c7c0cf78d9e5465e08c91a37db = L.polyline(
                [[41.9102411, -87.6510991], [41.9098248, -87.6510854]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ba858c93714741500f21a4b3d166d856 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_abbab9a9c59a2ec95071b9142ecb43eb = $(`<div id=&quot;html_abbab9a9c59a2ec95071b9142ecb43eb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322751 → 261185411 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24111763&quot; target=&quot;_blank&quot;>24111763</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>46.304393634756266</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Fremont Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_ba858c93714741500f21a4b3d166d856.setContent(html_abbab9a9c59a2ec95071b9142ecb43eb);
            
        

        poly_line_81c872c7c0cf78d9e5465e08c91a37db.bindPopup(popup_ba858c93714741500f21a4b3d166d856)
        ;

        
    
    
            var poly_line_5144d629ddc237ea951d4d9a2df1b53c = L.polyline(
                [[41.9102411, -87.6510991], [41.9102416, -87.6512029], [41.9102426, -87.6513551], [41.9099061, -87.6513545], [41.9098194, -87.6513543]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_68d116b2a33dd88a18eaba45e3b966ed = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8da198608cad01c5dec7e6d203cfed20 = $(`<div id=&quot;html_8da198608cad01c5dec7e6d203cfed20&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322751 → 5493322753 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571627752&quot; target=&quot;_blank&quot;>571627752</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>68.24260772310092</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_68d116b2a33dd88a18eaba45e3b966ed.setContent(html_8da198608cad01c5dec7e6d203cfed20);
            
        

        poly_line_5144d629ddc237ea951d4d9a2df1b53c.bindPopup(popup_68d116b2a33dd88a18eaba45e3b966ed)
        ;

        
    
    
            var poly_line_46a18b98f7ff787a19b2ca988b698e59 = L.polyline(
                [[41.9098194, -87.6513543], [41.9098089, -87.6518682]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_cc4555149c261c1e8d815b180c00584b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_103b71ef0f463480a77b1ffa1e4b719d = $(`<div id=&quot;html_103b71ef0f463480a77b1ffa1e4b719d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322753 → 10941231093 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24083761&quot; target=&quot;_blank&quot;>24083761</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>42.54179613045074</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Weed Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_cc4555149c261c1e8d815b180c00584b.setContent(html_103b71ef0f463480a77b1ffa1e4b719d);
            
        

        poly_line_46a18b98f7ff787a19b2ca988b698e59.bindPopup(popup_cc4555149c261c1e8d815b180c00584b)
        ;

        
    
    
            var poly_line_834ea9b212cc54eb11041c973a3b6e32 = L.polyline(
                [[41.9098194, -87.6513543], [41.9098227, -87.6511894], [41.9098248, -87.6510854]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6b454abfcc3bd06c4839d504bc382b99 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5c9c9418b3a76af93cfe3770ec8f4e2e = $(`<div id=&quot;html_5c9c9418b3a76af93cfe3770ec8f4e2e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322753 → 261185411 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24083761&quot; target=&quot;_blank&quot;>24083761</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.25985839270622</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Weed Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_6b454abfcc3bd06c4839d504bc382b99.setContent(html_5c9c9418b3a76af93cfe3770ec8f4e2e);
            
        

        poly_line_834ea9b212cc54eb11041c973a3b6e32.bindPopup(popup_6b454abfcc3bd06c4839d504bc382b99)
        ;

        
    
    
            var poly_line_f43315deb9751e1a947a42fd45cea863 = L.polyline(
                [[41.9098194, -87.6513543], [41.9099061, -87.6513545], [41.9102426, -87.6513551], [41.9102416, -87.6512029], [41.9102411, -87.6510991]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c02cb227b48b32efe8aca06160b19192 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_53f87e4cae6dbd7d54fad69957f22d36 = $(`<div id=&quot;html_53f87e4cae6dbd7d54fad69957f22d36&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322753 → 5493322751 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571627752&quot; target=&quot;_blank&quot;>571627752</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>68.24260772310092</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_c02cb227b48b32efe8aca06160b19192.setContent(html_53f87e4cae6dbd7d54fad69957f22d36);
            
        

        poly_line_f43315deb9751e1a947a42fd45cea863.bindPopup(popup_c02cb227b48b32efe8aca06160b19192)
        ;

        
    
    
            var poly_line_b9cd65b3a0e183a037c0e0a1046fd744 = L.polyline(
                [[41.9105089, -87.6531121], [41.910328, -87.6531073]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ac47364c413cf1f72618cc8322966340 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_977f71cd079d01cc5ffdb536785da8de = $(`<div id=&quot;html_977f71cd079d01cc5ffdb536785da8de&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322756 → 2401648316 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1281243508&quot; target=&quot;_blank&quot;>1281243508</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.119111900022336</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Sheffield Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_ac47364c413cf1f72618cc8322966340.setContent(html_977f71cd079d01cc5ffdb536785da8de);
            
        

        poly_line_b9cd65b3a0e183a037c0e0a1046fd744.bindPopup(popup_ac47364c413cf1f72618cc8322966340)
        ;

        
    
    
            var poly_line_ae2aa695a0b91651f3cbe8eef06e49a1 = L.polyline(
                [[41.9105089, -87.6531121], [41.9105071, -87.6532091], [41.9105048, -87.6533379], [41.9107593, -87.6533488], [41.9108428, -87.6533536]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4bae16d1838513addd10c0f284391ea2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4a6c6d5e5e9f0c68b99c7eb9a233bda3 = $(`<div id=&quot;html_4a6c6d5e5e9f0c68b99c7eb9a233bda3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322756 → 12195807198 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571627753&quot; target=&quot;_blank&quot;>571627753</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>56.29735143270158</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_4bae16d1838513addd10c0f284391ea2.setContent(html_4a6c6d5e5e9f0c68b99c7eb9a233bda3);
            
        

        poly_line_ae2aa695a0b91651f3cbe8eef06e49a1.bindPopup(popup_4bae16d1838513addd10c0f284391ea2)
        ;

        
    
    
            var poly_line_03ca8ec12c6cc30bd3fbdb3a23586494 = L.polyline(
                [[41.9105089, -87.6531121], [41.9107623, -87.6531187], [41.910848, -87.6531209]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fb2945953bb757e43d8301e25f9cd45a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3cea18cbf4f6bf11ee05bd5fa106cc9b = $(`<div id=&quot;html_3cea18cbf4f6bf11ee05bd5fa106cc9b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322756 → 250756058 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1281243508&quot; target=&quot;_blank&quot;>1281243508</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>37.71328416420127</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Sheffield Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_fb2945953bb757e43d8301e25f9cd45a.setContent(html_3cea18cbf4f6bf11ee05bd5fa106cc9b);
            
        

        poly_line_03ca8ec12c6cc30bd3fbdb3a23586494.bindPopup(popup_fb2945953bb757e43d8301e25f9cd45a)
        ;

        
    
    
            var poly_line_e3cf5c30940f5e7a29c52e83126af18c = L.polyline(
                [[41.9096024, -87.6522815], [41.9091068, -87.651864]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_389743acccb6acbee2859f827ccae851 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e9e9bd6d7c8c717c52d250d1ff4b0560 = $(`<div id=&quot;html_e9e9bd6d7c8c717c52d250d1ff4b0560&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322757 → 2204462548 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/210367260&quot; target=&quot;_blank&quot;>210367260</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>65.04263000970583</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_389743acccb6acbee2859f827ccae851.setContent(html_e9e9bd6d7c8c717c52d250d1ff4b0560);
            
        

        poly_line_e3cf5c30940f5e7a29c52e83126af18c.bindPopup(popup_389743acccb6acbee2859f827ccae851)
        ;

        
    
    
            var poly_line_b9ae27af77a290c03e5a908588df7ce3 = L.polyline(
                [[41.9096024, -87.6522815], [41.9097309, -87.6523929], [41.9097969, -87.6524501]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_90f21d7a70cd3a86c5adc2d5d4a7a2da = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3349e463b3dade85aefc779859987c56 = $(`<div id=&quot;html_3349e463b3dade85aefc779859987c56&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322757 → 2204462531 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/210367260&quot; target=&quot;_blank&quot;>210367260</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>25.73714372700703</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_90f21d7a70cd3a86c5adc2d5d4a7a2da.setContent(html_3349e463b3dade85aefc779859987c56);
            
        

        poly_line_b9ae27af77a290c03e5a908588df7ce3.bindPopup(popup_90f21d7a70cd3a86c5adc2d5d4a7a2da)
        ;

        
    
    
            var poly_line_aeb1a7a23745a500bef29e8bffd55bd9 = L.polyline(
                [[41.9096024, -87.6522815], [41.909541, -87.6524279], [41.9096069, -87.6524792]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c5942655e506a24228e75706b367af4f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_59f2c0ae150b64af7f4c7ab8ef70470b = $(`<div id=&quot;html_59f2c0ae150b64af7f4c7ab8ef70470b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322757 → 5493322759 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571627754&quot; target=&quot;_blank&quot;>571627754</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.374773061889805</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_c5942655e506a24228e75706b367af4f.setContent(html_59f2c0ae150b64af7f4c7ab8ef70470b);
            
        

        poly_line_aeb1a7a23745a500bef29e8bffd55bd9.bindPopup(popup_c5942655e506a24228e75706b367af4f)
        ;

        
    
    
            var poly_line_1cab8dff126357b68d59324ff95523b9 = L.polyline(
                [[41.9096069, -87.6524792], [41.9096301, -87.6524301]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7f8fd2711aec0fe1cdde062cc47a5f7e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5d94b512d14fb2d0f408df01ab41df74 = $(`<div id=&quot;html_5d94b512d14fb2d0f408df01ab41df74&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322759 → 5493322760 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571627755&quot; target=&quot;_blank&quot;>571627755</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>4.812866469177212</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_7f8fd2711aec0fe1cdde062cc47a5f7e.setContent(html_5d94b512d14fb2d0f408df01ab41df74);
            
        

        poly_line_1cab8dff126357b68d59324ff95523b9.bindPopup(popup_7f8fd2711aec0fe1cdde062cc47a5f7e)
        ;

        
    
    
            var poly_line_9adee42189a354515a49d7cdee534999 = L.polyline(
                [[41.9096069, -87.6524792], [41.909541, -87.6524279], [41.9096024, -87.6522815]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1b1ee0151d16329bf0c54440817bdb24 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_910cfd67690420f89286590fb71fd024 = $(`<div id=&quot;html_910cfd67690420f89286590fb71fd024&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322759 → 5493322757 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571627754&quot; target=&quot;_blank&quot;>571627754</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.374773061889805</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_1b1ee0151d16329bf0c54440817bdb24.setContent(html_910cfd67690420f89286590fb71fd024);
            
        

        poly_line_9adee42189a354515a49d7cdee534999.bindPopup(popup_1b1ee0151d16329bf0c54440817bdb24)
        ;

        
    
    
            var poly_line_1b5001ca156d54bb64d61a7a3f3fdd07 = L.polyline(
                [[41.9096069, -87.6524792], [41.9095184, -87.6526661], [41.9094612, -87.6527022], [41.9094282, -87.6527861], [41.9093875, -87.6528812]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_78d4b23835e68c7a164f7d6f93fe6ecb = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7dcfcebcec005f0b35aa4858c4096de0 = $(`<div id=&quot;html_7dcfcebcec005f0b35aa4858c4096de0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322759 → 5493322763 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571627755&quot; target=&quot;_blank&quot;>571627755</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>42.28957169580968</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_78d4b23835e68c7a164f7d6f93fe6ecb.setContent(html_7dcfcebcec005f0b35aa4858c4096de0);
            
        

        poly_line_1b5001ca156d54bb64d61a7a3f3fdd07.bindPopup(popup_78d4b23835e68c7a164f7d6f93fe6ecb)
        ;

        
    
    
            var poly_line_56235377834c4876a7fb415a9ed30b0c = L.polyline(
                [[41.9096301, -87.6524301], [41.9096069, -87.6524792]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ea216a2b031bd7983c53ef4159c8d561 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_02b1314158070cd152f67f1b5060670d = $(`<div id=&quot;html_02b1314158070cd152f67f1b5060670d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322760 → 5493322759 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571627755&quot; target=&quot;_blank&quot;>571627755</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>4.812866469177212</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_ea216a2b031bd7983c53ef4159c8d561.setContent(html_02b1314158070cd152f67f1b5060670d);
            
        

        poly_line_56235377834c4876a7fb415a9ed30b0c.bindPopup(popup_ea216a2b031bd7983c53ef4159c8d561)
        ;

        
    
    
            var poly_line_0cc255a694cd711800ca6db059d373bb = L.polyline(
                [[41.9093875, -87.6528812], [41.9090808, -87.6526246]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_91f6d0f95cc74ab68ebd148f539da775 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5938fa1cbb280a653b993f48836b10a1 = $(`<div id=&quot;html_5938fa1cbb280a653b993f48836b10a1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322763 → 5493322769 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273622070&quot; target=&quot;_blank&quot;>273622070</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>40.17385446886375</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_91f6d0f95cc74ab68ebd148f539da775.setContent(html_5938fa1cbb280a653b993f48836b10a1);
            
        

        poly_line_0cc255a694cd711800ca6db059d373bb.bindPopup(popup_91f6d0f95cc74ab68ebd148f539da775)
        ;

        
    
    
            var poly_line_4ca001d4c11062ef27041dff6d739a6c = L.polyline(
                [[41.9093875, -87.6528812], [41.9094639, -87.652945]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_47561c9bcb38acb8713e6ebbc46d2fbf = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6f011d553708eda493e18fa455f74445 = $(`<div id=&quot;html_6f011d553708eda493e18fa455f74445&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322763 → 2168537847 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273622070&quot; target=&quot;_blank&quot;>273622070</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>10.002192001778809</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_47561c9bcb38acb8713e6ebbc46d2fbf.setContent(html_6f011d553708eda493e18fa455f74445);
            
        

        poly_line_4ca001d4c11062ef27041dff6d739a6c.bindPopup(popup_47561c9bcb38acb8713e6ebbc46d2fbf)
        ;

        
    
    
            var poly_line_e339ac7eff9c8ec464f40f94342760cc = L.polyline(
                [[41.9093875, -87.6528812], [41.9094282, -87.6527861], [41.9094612, -87.6527022], [41.9095184, -87.6526661], [41.9096069, -87.6524792]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fd04916cb144369795b7ed66f9e97bf9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_962d9eaa41d8c189d8f318bfe6f940d9 = $(`<div id=&quot;html_962d9eaa41d8c189d8f318bfe6f940d9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322763 → 5493322759 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571627755&quot; target=&quot;_blank&quot;>571627755</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>42.289571695809684</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_fd04916cb144369795b7ed66f9e97bf9.setContent(html_962d9eaa41d8c189d8f318bfe6f940d9);
            
        

        poly_line_e339ac7eff9c8ec464f40f94342760cc.bindPopup(popup_fd04916cb144369795b7ed66f9e97bf9)
        ;

        
    
    
            var poly_line_48e2ead6604d2a6c9f7514acc15795c5 = L.polyline(
                [[41.9091697, -87.6524369], [41.9092259, -87.6524324], [41.9093663, -87.6521524], [41.9092755, -87.652079], [41.909152, -87.6523556], [41.9091697, -87.6524369]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9ac6ae9584c652f8eecc2040488868d8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b90057c365a1556886d2c36d18522e3c = $(`<div id=&quot;html_b90057c365a1556886d2c36d18522e3c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322768 → 5493322768 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571627756&quot; target=&quot;_blank&quot;>571627756</a>, <a href=&quot;https://www.openstreetmap.org/way/571627757&quot; target=&quot;_blank&quot;>571627757</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>79.68454849224472</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_9ac6ae9584c652f8eecc2040488868d8.setContent(html_b90057c365a1556886d2c36d18522e3c);
            
        

        poly_line_48e2ead6604d2a6c9f7514acc15795c5.bindPopup(popup_9ac6ae9584c652f8eecc2040488868d8)
        ;

        
    
    
            var poly_line_7669ec82d472abe1343d4cf043ca4618 = L.polyline(
                [[41.9091697, -87.6524369], [41.909152, -87.6523556], [41.9092755, -87.652079], [41.9093663, -87.6521524], [41.9092259, -87.6524324], [41.9091697, -87.6524369]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_881835526d16a80366a3085c1d796005 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c7f7342364b7def8fc9520a62ea1e396 = $(`<div id=&quot;html_c7f7342364b7def8fc9520a62ea1e396&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322768 → 5493322768 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571627756&quot; target=&quot;_blank&quot;>571627756</a>, <a href=&quot;https://www.openstreetmap.org/way/571627757&quot; target=&quot;_blank&quot;>571627757</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>79.68454849224473</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_881835526d16a80366a3085c1d796005.setContent(html_c7f7342364b7def8fc9520a62ea1e396);
            
        

        poly_line_7669ec82d472abe1343d4cf043ca4618.bindPopup(popup_881835526d16a80366a3085c1d796005)
        ;

        
    
    
            var poly_line_fd4c648fc00c47a7766ed8e25d50ebcf = L.polyline(
                [[41.9091697, -87.6524369], [41.9091258, -87.6525296], [41.9090808, -87.6526246]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_cc7822abe477aaa935442669c6b501b7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e41306d9c8ae791862460482a0b9f497 = $(`<div id=&quot;html_e41306d9c8ae791862460482a0b9f497&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322768 → 5493322769 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571627757&quot; target=&quot;_blank&quot;>571627757</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.411352423746166</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_cc7822abe477aaa935442669c6b501b7.setContent(html_e41306d9c8ae791862460482a0b9f497);
            
        

        poly_line_fd4c648fc00c47a7766ed8e25d50ebcf.bindPopup(popup_cc7822abe477aaa935442669c6b501b7)
        ;

        
    
    
            var poly_line_93f7eb92ff4ca048927bbed2fc96ad24 = L.polyline(
                [[41.9090808, -87.6526246], [41.9084119, -87.6520652]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_29ebabc75fb7bfc609af1470a7839aef = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b931330ad0f84249601831d8b32571e8 = $(`<div id=&quot;html_b931330ad0f84249601831d8b32571e8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322769 → 12185013487 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273622070&quot; target=&quot;_blank&quot;>273622070</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>87.60746770789935</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_29ebabc75fb7bfc609af1470a7839aef.setContent(html_b931330ad0f84249601831d8b32571e8);
            
        

        poly_line_93f7eb92ff4ca048927bbed2fc96ad24.bindPopup(popup_29ebabc75fb7bfc609af1470a7839aef)
        ;

        
    
    
            var poly_line_7c448cd6aa46de677525a38874bd7032 = L.polyline(
                [[41.9090808, -87.6526246], [41.9093875, -87.6528812]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_49002500fd6ba2423ef0c6ec8b377f37 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_25e3dc450ae5d4e0f30989d0f3e895fc = $(`<div id=&quot;html_25e3dc450ae5d4e0f30989d0f3e895fc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322769 → 5493322763 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273622070&quot; target=&quot;_blank&quot;>273622070</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>40.17385446886375</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_49002500fd6ba2423ef0c6ec8b377f37.setContent(html_25e3dc450ae5d4e0f30989d0f3e895fc);
            
        

        poly_line_7c448cd6aa46de677525a38874bd7032.bindPopup(popup_49002500fd6ba2423ef0c6ec8b377f37)
        ;

        
    
    
            var poly_line_18b19a5456f4c5f2beadebcfedd87243 = L.polyline(
                [[41.9090808, -87.6526246], [41.9091258, -87.6525296], [41.9091697, -87.6524369]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_919d0fddce49a3dfce28db01eae7cb54 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_dcc89d6907c05bd4634e98916d5e7f38 = $(`<div id=&quot;html_dcc89d6907c05bd4634e98916d5e7f38&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322769 → 5493322768 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571627757&quot; target=&quot;_blank&quot;>571627757</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.411352423746166</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_919d0fddce49a3dfce28db01eae7cb54.setContent(html_dcc89d6907c05bd4634e98916d5e7f38);
            
        

        poly_line_18b19a5456f4c5f2beadebcfedd87243.bindPopup(popup_919d0fddce49a3dfce28db01eae7cb54)
        ;

        
    
    
            var poly_line_428fa8ceaeb8da0e47a9981d2ab34a0d = L.polyline(
                [[41.906779, -87.6501385], [41.9071183, -87.6504301]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0ab3b4945b760046bb0b9510168aca35 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4d8ae818e25f934e781441079d710d54 = $(`<div id=&quot;html_4d8ae818e25f934e781441079d710d54&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322782 → 5493322783 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571627762&quot; target=&quot;_blank&quot;>571627762</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>44.78569434343041</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_0ab3b4945b760046bb0b9510168aca35.setContent(html_4d8ae818e25f934e781441079d710d54);
            
        

        poly_line_428fa8ceaeb8da0e47a9981d2ab34a0d.bindPopup(popup_0ab3b4945b760046bb0b9510168aca35)
        ;

        
    
    
            var poly_line_967d9b322a1f53ab4f3afc5b9675bf3f = L.polyline(
                [[41.906779, -87.6501385], [41.9072362, -87.6501652]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ebd2b926db0b054fd04067e0ce1ade7b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fe1bb0c78556c2d40fbcd0f203018e87 = $(`<div id=&quot;html_fe1bb0c78556c2d40fbcd0f203018e87&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322782 → 5493322789 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571627764&quot; target=&quot;_blank&quot;>571627764</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>50.886385635878725</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_ebd2b926db0b054fd04067e0ce1ade7b.setContent(html_fe1bb0c78556c2d40fbcd0f203018e87);
            
        

        poly_line_967d9b322a1f53ab4f3afc5b9675bf3f.bindPopup(popup_ebd2b926db0b054fd04067e0ce1ade7b)
        ;

        
    
    
            var poly_line_37ab8ac2b5cb151564b3d4c0fd9383b9 = L.polyline(
                [[41.906779, -87.6501385], [41.9067144, -87.6501347], [41.9066482, -87.6502698]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d1a973db8c1008333012ea5ec71fe91c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_528eeddc6ab89367c4c599a6c495649d = $(`<div id=&quot;html_528eeddc6ab89367c4c599a6c495649d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322782 → 5493322784 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571627764&quot; target=&quot;_blank&quot;>571627764</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.576018015389266</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_d1a973db8c1008333012ea5ec71fe91c.setContent(html_528eeddc6ab89367c4c599a6c495649d);
            
        

        poly_line_37ab8ac2b5cb151564b3d4c0fd9383b9.bindPopup(popup_d1a973db8c1008333012ea5ec71fe91c)
        ;

        
    
    
            var poly_line_c1237d29266bcc4544d0e83291c737a8 = L.polyline(
                [[41.9071183, -87.6504301], [41.906779, -87.6501385]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3d37f348c15b29586a5b526baf2cd646 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6848478b5ad00b391d7917aa22d2d583 = $(`<div id=&quot;html_6848478b5ad00b391d7917aa22d2d583&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322783 → 5493322782 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571627762&quot; target=&quot;_blank&quot;>571627762</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>44.78569434343041</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_3d37f348c15b29586a5b526baf2cd646.setContent(html_6848478b5ad00b391d7917aa22d2d583);
            
        

        poly_line_c1237d29266bcc4544d0e83291c737a8.bindPopup(popup_3d37f348c15b29586a5b526baf2cd646)
        ;

        
    
    
            var poly_line_2037b4d76270c9fcf127f2d2295a3c84 = L.polyline(
                [[41.9071183, -87.6504301], [41.9072362, -87.6501652]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e0d4fed846b975364bd5c20c0e84ed20 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b0312dda75728e573cb1e4f4cb66009d = $(`<div id=&quot;html_b0312dda75728e573cb1e4f4cb66009d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322783 → 5493322789 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571627763&quot; target=&quot;_blank&quot;>571627763</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>25.542685106732367</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_e0d4fed846b975364bd5c20c0e84ed20.setContent(html_b0312dda75728e573cb1e4f4cb66009d);
            
        

        poly_line_2037b4d76270c9fcf127f2d2295a3c84.bindPopup(popup_e0d4fed846b975364bd5c20c0e84ed20)
        ;

        
    
    
            var poly_line_ef846e6fa5e2862b70b4534fb4b387be = L.polyline(
                [[41.9071183, -87.6504301], [41.9070589, -87.6505638], [41.9069925, -87.6505773], [41.9066482, -87.6502698]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_560469f3ff0a2ffc87fdb52e52ba0c7c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8a3925bcca9fc56c04afbb548a733a6d = $(`<div id=&quot;html_8a3925bcca9fc56c04afbb548a733a6d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322783 → 5493322784 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571627763&quot; target=&quot;_blank&quot;>571627763</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>66.32339974287275</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_560469f3ff0a2ffc87fdb52e52ba0c7c.setContent(html_8a3925bcca9fc56c04afbb548a733a6d);
            
        

        poly_line_ef846e6fa5e2862b70b4534fb4b387be.bindPopup(popup_560469f3ff0a2ffc87fdb52e52ba0c7c)
        ;

        
    
    
            var poly_line_4b11f616f2a3d13bd8d6495a6088a007 = L.polyline(
                [[41.9066482, -87.6502698], [41.9069925, -87.6505773], [41.9070589, -87.6505638], [41.9071183, -87.6504301]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7437ec674d5f224fee7763191d601ef3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_51ad9ef3522dad9d45a7170df9d3676d = $(`<div id=&quot;html_51ad9ef3522dad9d45a7170df9d3676d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322784 → 5493322783 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571627763&quot; target=&quot;_blank&quot;>571627763</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>66.32339974287275</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_7437ec674d5f224fee7763191d601ef3.setContent(html_51ad9ef3522dad9d45a7170df9d3676d);
            
        

        poly_line_4b11f616f2a3d13bd8d6495a6088a007.bindPopup(popup_7437ec674d5f224fee7763191d601ef3)
        ;

        
    
    
            var poly_line_502c78cbfb9fbac192711bf0c48fe42f = L.polyline(
                [[41.9066482, -87.6502698], [41.906584, -87.6504008], [41.9065372, -87.6504975]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_54cdacf3445b6a37312082d2c2994373 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_17084107e8a6ba56a590b2b2b1f57d6a = $(`<div id=&quot;html_17084107e8a6ba56a590b2b2b1f57d6a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322784 → 5493322787 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571627764&quot; target=&quot;_blank&quot;>571627764</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.525934478473125</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_54cdacf3445b6a37312082d2c2994373.setContent(html_17084107e8a6ba56a590b2b2b1f57d6a);
            
        

        poly_line_502c78cbfb9fbac192711bf0c48fe42f.bindPopup(popup_54cdacf3445b6a37312082d2c2994373)
        ;

        
    
    
            var poly_line_3ad494a394468da4fb5d70b32aade34b = L.polyline(
                [[41.9066482, -87.6502698], [41.9067144, -87.6501347], [41.906779, -87.6501385]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_692a50b0a013f1654baa408b77be3d72 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c07d9efd41e8b2674e10582f948b0f62 = $(`<div id=&quot;html_c07d9efd41e8b2674e10582f948b0f62&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322784 → 5493322782 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571627764&quot; target=&quot;_blank&quot;>571627764</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.576018015389266</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_692a50b0a013f1654baa408b77be3d72.setContent(html_c07d9efd41e8b2674e10582f948b0f62);
            
        

        poly_line_3ad494a394468da4fb5d70b32aade34b.bindPopup(popup_692a50b0a013f1654baa408b77be3d72)
        ;

        
    
    
            var poly_line_05dbc12a68ade4d9c13bd76ef017ca77 = L.polyline(
                [[41.9065372, -87.6504975], [41.9061275, -87.6501549], [41.9061094, -87.6501398], [41.9060398, -87.6500814]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8a91532ab908e5a79fe683cc58fc6bc2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_cd44dd31cd05144543fb367441014d60 = $(`<div id=&quot;html_cd44dd31cd05144543fb367441014d60&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322787 → 261230957 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273622070&quot; target=&quot;_blank&quot;>273622070</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>65.15187937609484</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_8a91532ab908e5a79fe683cc58fc6bc2.setContent(html_cd44dd31cd05144543fb367441014d60);
            
        

        poly_line_05dbc12a68ade4d9c13bd76ef017ca77.bindPopup(popup_8a91532ab908e5a79fe683cc58fc6bc2)
        ;

        
    
    
            var poly_line_d67c89b45d765a266107a924c6445a6f = L.polyline(
                [[41.9065372, -87.6504975], [41.9070161, -87.6508988], [41.9070829, -87.6509539]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_09fab75ff6ee6778c8ba0ed234c24d5c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_206761552a0566b39a7d58d24f7ce9d2 = $(`<div id=&quot;html_206761552a0566b39a7d58d24f7ce9d2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322787 → 261162245 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273622070&quot; target=&quot;_blank&quot;>273622070</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>71.47385640542913</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_09fab75ff6ee6778c8ba0ed234c24d5c.setContent(html_206761552a0566b39a7d58d24f7ce9d2);
            
        

        poly_line_d67c89b45d765a266107a924c6445a6f.bindPopup(popup_09fab75ff6ee6778c8ba0ed234c24d5c)
        ;

        
    
    
            var poly_line_c2d0df5f5c984ced60a05cc4a1f59590 = L.polyline(
                [[41.9065372, -87.6504975], [41.906584, -87.6504008], [41.9066482, -87.6502698]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5cc6b105cb1a4a58aead87ad5ceea427 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d44400eda996c5973eb75db8827d5b6d = $(`<div id=&quot;html_d44400eda996c5973eb75db8827d5b6d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322787 → 5493322784 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571627764&quot; target=&quot;_blank&quot;>571627764</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.525934478473125</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_5cc6b105cb1a4a58aead87ad5ceea427.setContent(html_d44400eda996c5973eb75db8827d5b6d);
            
        

        poly_line_c2d0df5f5c984ced60a05cc4a1f59590.bindPopup(popup_5cc6b105cb1a4a58aead87ad5ceea427)
        ;

        
    
    
            var poly_line_0381008ee46752e04f9ef9315c965306 = L.polyline(
                [[41.9072362, -87.6501652], [41.9071183, -87.6504301]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_393ddb57dccaecefe3a781611a23d6d9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4b6a90f717229ef9ebc8dadbab3a2f17 = $(`<div id=&quot;html_4b6a90f717229ef9ebc8dadbab3a2f17&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322789 → 5493322783 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571627763&quot; target=&quot;_blank&quot;>571627763</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>25.542685106732367</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_393ddb57dccaecefe3a781611a23d6d9.setContent(html_4b6a90f717229ef9ebc8dadbab3a2f17);
            
        

        poly_line_0381008ee46752e04f9ef9315c965306.bindPopup(popup_393ddb57dccaecefe3a781611a23d6d9)
        ;

        
    
    
            var poly_line_12c42dc6d0ff011d87154c274b1f4335 = L.polyline(
                [[41.9072362, -87.6501652], [41.906779, -87.6501385]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e115a407ad894b42c2c6bf14348a781d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5bafa864d293cbeb190ca4bf23a26872 = $(`<div id=&quot;html_5bafa864d293cbeb190ca4bf23a26872&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322789 → 5493322782 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571627764&quot; target=&quot;_blank&quot;>571627764</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>50.886385635878725</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_e115a407ad894b42c2c6bf14348a781d.setContent(html_5bafa864d293cbeb190ca4bf23a26872);
            
        

        poly_line_12c42dc6d0ff011d87154c274b1f4335.bindPopup(popup_e115a407ad894b42c2c6bf14348a781d)
        ;

        
    
    
            var poly_line_b7e7da0a0977294627b996ae89e4fecc = L.polyline(
                [[41.9072362, -87.6501652], [41.9073413, -87.6502199], [41.9074223, -87.6502621]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_dd4877134b210f4e33061bcaf24f7908 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6c9ee6d0a418dc564ea8eabbf27c7f17 = $(`<div id=&quot;html_6c9ee6d0a418dc564ea8eabbf27c7f17&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322789 → 5493322790 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571627765&quot; target=&quot;_blank&quot;>571627765</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.192783240511215</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_dd4877134b210f4e33061bcaf24f7908.setContent(html_6c9ee6d0a418dc564ea8eabbf27c7f17);
            
        

        poly_line_b7e7da0a0977294627b996ae89e4fecc.bindPopup(popup_dd4877134b210f4e33061bcaf24f7908)
        ;

        
    
    
            var poly_line_e385072162dbc3742f099ef29c665cf0 = L.polyline(
                [[41.9074223, -87.6502621], [41.9073413, -87.6502199], [41.9072362, -87.6501652]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_423de47549da0c4ebac6fbe510c65dae = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_dc86abd58c615a6896ec563148f6b33a = $(`<div id=&quot;html_dc86abd58c615a6896ec563148f6b33a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322790 → 5493322789 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571627765&quot; target=&quot;_blank&quot;>571627765</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.192783240511215</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_423de47549da0c4ebac6fbe510c65dae.setContent(html_dc86abd58c615a6896ec563148f6b33a);
            
        

        poly_line_e385072162dbc3742f099ef29c665cf0.bindPopup(popup_423de47549da0c4ebac6fbe510c65dae)
        ;

        
    
    
            var poly_line_edef2e65e69a4503cd1cd765ecabe8ab = L.polyline(
                [[41.9074223, -87.6502621], [41.9074853, -87.6502901], [41.9078014, -87.6504231]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b42abc896480cc5226b3db88dd2974ad = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d3775f1f50356eb561ed253ade050546 = $(`<div id=&quot;html_d3775f1f50356eb561ed253ade050546&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322790 → 5817722309 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/615199485&quot; target=&quot;_blank&quot;>615199485</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>44.21025117945722</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_b42abc896480cc5226b3db88dd2974ad.setContent(html_d3775f1f50356eb561ed253ade050546);
            
        

        poly_line_edef2e65e69a4503cd1cd765ecabe8ab.bindPopup(popup_b42abc896480cc5226b3db88dd2974ad)
        ;

        
    
    
            var poly_line_daf90a05b23f32c0297ea7686d505665 = L.polyline(
                [[41.9074223, -87.6502621], [41.9071514, -87.6508105], [41.9071409, -87.6508318], [41.9071306, -87.6508535], [41.9070829, -87.6509539]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3b29b24527aa88d9ef91a00038d0605b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b7d64b8b2c938cef6af3803c92e65c60 = $(`<div id=&quot;html_b7d64b8b2c938cef6af3803c92e65c60&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322790 → 261162245 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1077476823&quot; target=&quot;_blank&quot;>1077476823</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>68.57111762795871</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Eastman Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_3b29b24527aa88d9ef91a00038d0605b.setContent(html_b7d64b8b2c938cef6af3803c92e65c60);
            
        

        poly_line_daf90a05b23f32c0297ea7686d505665.bindPopup(popup_3b29b24527aa88d9ef91a00038d0605b)
        ;

        
    
    
            var poly_line_9eb91bb85244058b64429818c24c20af = L.polyline(
                [[41.9074223, -87.6502621], [41.9074413, -87.6502216], [41.9074524, -87.649519], [41.9074541, -87.6494137]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6e499150c9e2c818177683cb75609523 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fa7c7aef45ff5cd4c229280a49c259fe = $(`<div id=&quot;html_fa7c7aef45ff5cd4c229280a49c259fe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493322790 → 261162243 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24079428&quot; target=&quot;_blank&quot;>24079428</a>, <a href=&quot;https://www.openstreetmap.org/way/1077476823&quot; target=&quot;_blank&quot;>1077476823</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>70.83407630673223</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Eastman Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_6e499150c9e2c818177683cb75609523.setContent(html_fa7c7aef45ff5cd4c229280a49c259fe);
            
        

        poly_line_9eb91bb85244058b64429818c24c20af.bindPopup(popup_6e499150c9e2c818177683cb75609523)
        ;

        
    
    
            var poly_line_0d229e6575f43c4a4815dfa19aa875f9 = L.polyline(
                [[41.9111501, -87.6464933], [41.9111437, -87.646864], [41.9111827, -87.6468645], [41.911315, -87.6468663], [41.911323, -87.6465179], [41.9111501, -87.6464933]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8b3c5e92950471e1c407fa5bd205585c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7f2671251df06768cb98e6f745cc835f = $(`<div id=&quot;html_7f2671251df06768cb98e6f745cc835f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493365221 → 5493365221 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571634492&quot; target=&quot;_blank&quot;>571634492</a>, <a href=&quot;https://www.openstreetmap.org/way/571634494&quot; target=&quot;_blank&quot;>571634494</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>97.9087105169143</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_8b3c5e92950471e1c407fa5bd205585c.setContent(html_7f2671251df06768cb98e6f745cc835f);
            
        

        poly_line_0d229e6575f43c4a4815dfa19aa875f9.bindPopup(popup_8b3c5e92950471e1c407fa5bd205585c)
        ;

        
    
    
            var poly_line_6630e0a90af1cf92502f9a1b4b26d49c = L.polyline(
                [[41.9111501, -87.6464933], [41.911323, -87.6465179], [41.911315, -87.6468663], [41.9111827, -87.6468645], [41.9111437, -87.646864], [41.9111501, -87.6464933]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_501d90f7ccdcd2cf7d51aacbe7a26c53 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_edbda9c80335196156e28d4003957a57 = $(`<div id=&quot;html_edbda9c80335196156e28d4003957a57&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493365221 → 5493365221 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571634492&quot; target=&quot;_blank&quot;>571634492</a>, <a href=&quot;https://www.openstreetmap.org/way/571634494&quot; target=&quot;_blank&quot;>571634494</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>97.90871051691431</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_501d90f7ccdcd2cf7d51aacbe7a26c53.setContent(html_edbda9c80335196156e28d4003957a57);
            
        

        poly_line_6630e0a90af1cf92502f9a1b4b26d49c.bindPopup(popup_501d90f7ccdcd2cf7d51aacbe7a26c53)
        ;

        
    
    
            var poly_line_c544f5596d939aaa97a705fe68f9eec2 = L.polyline(
                [[41.9111501, -87.6464933], [41.9110318, -87.6464923], [41.9109515, -87.646488]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1b81ed507af2263b1d4942c975d6ada4 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8597347a54341c53797fbdca7fb8f445 = $(`<div id=&quot;html_8597347a54341c53797fbdca7fb8f445&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5493365221 → 11891745323 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571634494&quot; target=&quot;_blank&quot;>571634494</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.090690933845334</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_1b81ed507af2263b1d4942c975d6ada4.setContent(html_8597347a54341c53797fbdca7fb8f445);
            
        

        poly_line_c544f5596d939aaa97a705fe68f9eec2.bindPopup(popup_1b81ed507af2263b1d4942c975d6ada4)
        ;

        
    
    
            var poly_line_5025a9b8f5c7ea07dcf91cd0e67c4f20 = L.polyline(
                [[41.9086996, -87.6461885], [41.9089351, -87.6458897], [41.9089377, -87.6458863], [41.908963, -87.6458535]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b9f3398959b82ee53921c49e11908ae5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_85a5349342115414b08e06d6a6d46e7b = $(`<div id=&quot;html_85a5349342115414b08e06d6a6d46e7b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5689513348 → 2387185357 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187854&quot; target=&quot;_blank&quot;>230187854</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>40.32819983434379</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_b9f3398959b82ee53921c49e11908ae5.setContent(html_85a5349342115414b08e06d6a6d46e7b);
            
        

        poly_line_5025a9b8f5c7ea07dcf91cd0e67c4f20.bindPopup(popup_b9f3398959b82ee53921c49e11908ae5)
        ;

        
    
    
            var poly_line_7b5381daf49e59eaacfb3094d1d76564 = L.polyline(
                [[41.89955, -87.6551462], [41.8996409, -87.655549]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#4363d8&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#4363d8&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6edee9b37d3e415678b8fb0729a31270 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_46e59f8ba28723b0149b7943325ad244 = $(`<div id=&quot;html_46e59f8ba28723b0149b7943325ad244&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5735002137 → 5735002142 (key 0)<br>                 <b>Component</b> 2<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/604388936&quot; target=&quot;_blank&quot;>604388936</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>34.836055049258086</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_6edee9b37d3e415678b8fb0729a31270.setContent(html_46e59f8ba28723b0149b7943325ad244);
            
        

        poly_line_7b5381daf49e59eaacfb3094d1d76564.bindPopup(popup_6edee9b37d3e415678b8fb0729a31270)
        ;

        
    
    
            var poly_line_634712e8f4b29a504e210052e1c4a8b9 = L.polyline(
                [[41.8990374, -87.6553386], [41.8991296, -87.6557439]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#4363d8&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#4363d8&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6bdf4252125bf811b9cf656e1106fb2c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2939c21c9ff77a7b307a9b76cc84655e = $(`<div id=&quot;html_2939c21c9ff77a7b307a9b76cc84655e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5735002141 → 5735002143 (key 0)<br>                 <b>Component</b> 2<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/604388936&quot; target=&quot;_blank&quot;>604388936</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>35.076351457726</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_6bdf4252125bf811b9cf656e1106fb2c.setContent(html_2939c21c9ff77a7b307a9b76cc84655e);
            
        

        poly_line_634712e8f4b29a504e210052e1c4a8b9.bindPopup(popup_6bdf4252125bf811b9cf656e1106fb2c)
        ;

        
    
    
            var poly_line_a05200715126139c91b567842cceb657 = L.polyline(
                [[41.8996409, -87.655549], [41.89955, -87.6551462]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#4363d8&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#4363d8&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_998f15513acaf8ab577426bbfc3e7a01 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_941bfbe6e0981945ebd1af8e9813d3a6 = $(`<div id=&quot;html_941bfbe6e0981945ebd1af8e9813d3a6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5735002142 → 5735002137 (key 0)<br>                 <b>Component</b> 2<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/604388936&quot; target=&quot;_blank&quot;>604388936</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>34.836055049258086</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_998f15513acaf8ab577426bbfc3e7a01.setContent(html_941bfbe6e0981945ebd1af8e9813d3a6);
            
        

        poly_line_a05200715126139c91b567842cceb657.bindPopup(popup_998f15513acaf8ab577426bbfc3e7a01)
        ;

        
    
    
            var poly_line_7747f936aba159000b9613910877ca8f = L.polyline(
                [[41.8996409, -87.655549], [41.8991296, -87.6557439]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#4363d8&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#4363d8&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_83abfb7a5933f1fce5a59fed5a970225 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_46094896d91c0980fcb21a2a62a4b953 = $(`<div id=&quot;html_46094896d91c0980fcb21a2a62a4b953&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5735002142 → 5735002143 (key 0)<br>                 <b>Component</b> 2<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/604388937&quot; target=&quot;_blank&quot;>604388937</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>59.09810349163959</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_83abfb7a5933f1fce5a59fed5a970225.setContent(html_46094896d91c0980fcb21a2a62a4b953);
            
        

        poly_line_7747f936aba159000b9613910877ca8f.bindPopup(popup_83abfb7a5933f1fce5a59fed5a970225)
        ;

        
    
    
            var poly_line_481fd130fb94361bfd6aa78accccc97b = L.polyline(
                [[41.8996409, -87.655549], [41.8996794, -87.6557196], [41.8996774, -87.6558375]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#4363d8&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#4363d8&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8240869fcaf006fd78efd4b109257060 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_970ae48eccd5e143f20207c871497765 = $(`<div id=&quot;html_970ae48eccd5e143f20207c871497765&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5735002142 → 5735002145 (key 0)<br>                 <b>Component</b> 2<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/604388936&quot; target=&quot;_blank&quot;>604388936</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>24.51473778526698</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_8240869fcaf006fd78efd4b109257060.setContent(html_970ae48eccd5e143f20207c871497765);
            
        

        poly_line_481fd130fb94361bfd6aa78accccc97b.bindPopup(popup_8240869fcaf006fd78efd4b109257060)
        ;

        
    
    
            var poly_line_823aa322d9f0f628a83c19820e4fb49f = L.polyline(
                [[41.8991296, -87.6557439], [41.8990374, -87.6553386]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#4363d8&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#4363d8&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b4105c0036e2382c32292246e0f3cf88 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1572b30eaff250f8210e54715d417f60 = $(`<div id=&quot;html_1572b30eaff250f8210e54715d417f60&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5735002143 → 5735002141 (key 0)<br>                 <b>Component</b> 2<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/604388936&quot; target=&quot;_blank&quot;>604388936</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>35.076351457726</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_b4105c0036e2382c32292246e0f3cf88.setContent(html_1572b30eaff250f8210e54715d417f60);
            
        

        poly_line_823aa322d9f0f628a83c19820e4fb49f.bindPopup(popup_b4105c0036e2382c32292246e0f3cf88)
        ;

        
    
    
            var poly_line_e24167b39ddfb5da8970d5e59f5a4fda = L.polyline(
                [[41.8991296, -87.6557439], [41.8991935, -87.6560247]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#4363d8&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#4363d8&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8f5b6bcf6d1f6b5bfe3ee667167eeddb = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_79e67c368c65858750c58d3e00a52ffb = $(`<div id=&quot;html_79e67c368c65858750c58d3e00a52ffb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5735002143 → 5735002144 (key 0)<br>                 <b>Component</b> 2<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/604388936&quot; target=&quot;_blank&quot;>604388936</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>24.30228991546167</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_8f5b6bcf6d1f6b5bfe3ee667167eeddb.setContent(html_79e67c368c65858750c58d3e00a52ffb);
            
        

        poly_line_e24167b39ddfb5da8970d5e59f5a4fda.bindPopup(popup_8f5b6bcf6d1f6b5bfe3ee667167eeddb)
        ;

        
    
    
            var poly_line_3918f6a24d444b8be290050d16154dcc = L.polyline(
                [[41.8991296, -87.6557439], [41.8996409, -87.655549]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#4363d8&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#4363d8&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d7e9325dd7790f51f263f3d00b6c52b5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_bae1a10d2682ce133a152d8328fc4c4f = $(`<div id=&quot;html_bae1a10d2682ce133a152d8328fc4c4f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5735002143 → 5735002142 (key 0)<br>                 <b>Component</b> 2<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/604388937&quot; target=&quot;_blank&quot;>604388937</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>59.09810349163959</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_d7e9325dd7790f51f263f3d00b6c52b5.setContent(html_bae1a10d2682ce133a152d8328fc4c4f);
            
        

        poly_line_3918f6a24d444b8be290050d16154dcc.bindPopup(popup_d7e9325dd7790f51f263f3d00b6c52b5)
        ;

        
    
    
            var poly_line_1d0cae413bc872cbd0923350cec0fdae = L.polyline(
                [[41.8991935, -87.6560247], [41.8991296, -87.6557439]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#4363d8&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#4363d8&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_94b2e37e0f3331f92e8b72733553fc10 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5a746ebaac9c93bba265828eab0a9db9 = $(`<div id=&quot;html_5a746ebaac9c93bba265828eab0a9db9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5735002144 → 5735002143 (key 0)<br>                 <b>Component</b> 2<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/604388936&quot; target=&quot;_blank&quot;>604388936</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>24.30228991546167</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_94b2e37e0f3331f92e8b72733553fc10.setContent(html_5a746ebaac9c93bba265828eab0a9db9);
            
        

        poly_line_1d0cae413bc872cbd0923350cec0fdae.bindPopup(popup_94b2e37e0f3331f92e8b72733553fc10)
        ;

        
    
    
            var poly_line_a5e2c34d124e7add4a493419f26d72a2 = L.polyline(
                [[41.8991935, -87.6560247], [41.8996774, -87.6558375]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#4363d8&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#4363d8&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b79b1aeb8c5172354fe4b346903c128d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0e4b8eb8b5875f749499f2bbc25765c7 = $(`<div id=&quot;html_0e4b8eb8b5875f749499f2bbc25765c7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5735002144 → 5735002145 (key 0)<br>                 <b>Component</b> 2<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/604388938&quot; target=&quot;_blank&quot;>604388938</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>55.99352396414769</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_b79b1aeb8c5172354fe4b346903c128d.setContent(html_0e4b8eb8b5875f749499f2bbc25765c7);
            
        

        poly_line_a5e2c34d124e7add4a493419f26d72a2.bindPopup(popup_b79b1aeb8c5172354fe4b346903c128d)
        ;

        
    
    
            var poly_line_f76fa5f6a78f163893ec30b1de956db6 = L.polyline(
                [[41.8991935, -87.6560247], [41.8992682, -87.6563526], [41.8996714, -87.656181], [41.8996774, -87.6558375]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#4363d8&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#4363d8&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9a1ee6d9ffaf2effc9840f8538ac0768 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_87443c1fcf807c0a944f17d2b210e1f6 = $(`<div id=&quot;html_87443c1fcf807c0a944f17d2b210e1f6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5735002144 → 5735002145 (key 1)<br>                 <b>Component</b> 2<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/604388936&quot; target=&quot;_blank&quot;>604388936</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>103.84818988100538</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_9a1ee6d9ffaf2effc9840f8538ac0768.setContent(html_87443c1fcf807c0a944f17d2b210e1f6);
            
        

        poly_line_f76fa5f6a78f163893ec30b1de956db6.bindPopup(popup_9a1ee6d9ffaf2effc9840f8538ac0768)
        ;

        
    
    
            var poly_line_f6444cef95df156fbbd26fa0eff1c1e0 = L.polyline(
                [[41.8996774, -87.6558375], [41.8991935, -87.6560247]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#4363d8&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#4363d8&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_dd91af47bd7be9f121874ac130fa1b4d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_909cb17b7302787b6c4aa0852ec4fe49 = $(`<div id=&quot;html_909cb17b7302787b6c4aa0852ec4fe49&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5735002145 → 5735002144 (key 0)<br>                 <b>Component</b> 2<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/604388938&quot; target=&quot;_blank&quot;>604388938</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>55.99352396414769</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_dd91af47bd7be9f121874ac130fa1b4d.setContent(html_909cb17b7302787b6c4aa0852ec4fe49);
            
        

        poly_line_f6444cef95df156fbbd26fa0eff1c1e0.bindPopup(popup_dd91af47bd7be9f121874ac130fa1b4d)
        ;

        
    
    
            var poly_line_4c944d294c967039ccfa6c4532f9b44e = L.polyline(
                [[41.8996774, -87.6558375], [41.8996714, -87.656181], [41.8992682, -87.6563526], [41.8991935, -87.6560247]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#4363d8&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#4363d8&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4102dd9fcbf722b72b227b5e62a2c799 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d9a6c6622cc9c9d9aac7cb05784911b1 = $(`<div id=&quot;html_d9a6c6622cc9c9d9aac7cb05784911b1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5735002145 → 5735002144 (key 1)<br>                 <b>Component</b> 2<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/604388936&quot; target=&quot;_blank&quot;>604388936</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>103.84818988100537</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_4102dd9fcbf722b72b227b5e62a2c799.setContent(html_d9a6c6622cc9c9d9aac7cb05784911b1);
            
        

        poly_line_4c944d294c967039ccfa6c4532f9b44e.bindPopup(popup_4102dd9fcbf722b72b227b5e62a2c799)
        ;

        
    
    
            var poly_line_5912f23e8890e7ee37ec7db552793283 = L.polyline(
                [[41.8996774, -87.6558375], [41.8996794, -87.6557196], [41.8996409, -87.655549]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#4363d8&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#4363d8&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_23fa3c212dddf1965a477e6d7dd3f384 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f4cab964b441ccbb2da1d30218e5b4cf = $(`<div id=&quot;html_f4cab964b441ccbb2da1d30218e5b4cf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5735002145 → 5735002142 (key 0)<br>                 <b>Component</b> 2<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/604388936&quot; target=&quot;_blank&quot;>604388936</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>24.51473778526698</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_23fa3c212dddf1965a477e6d7dd3f384.setContent(html_f4cab964b441ccbb2da1d30218e5b4cf);
            
        

        poly_line_5912f23e8890e7ee37ec7db552793283.bindPopup(popup_23fa3c212dddf1965a477e6d7dd3f384)
        ;

        
    
    
            var poly_line_a920dd88cda7e9a258e4f0354c643bf3 = L.polyline(
                [[41.9010221, -87.6517933], [41.900967, -87.6518457], [41.9009523, -87.6518603], [41.9009512, -87.6518613]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_321daf4a8e91f3c951e7f9f746677211 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2e115e40a06c175990069e000befd684 = $(`<div id=&quot;html_2e115e40a06c175990069e000befd684&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5778508827 → 5778508829 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/610123146&quot; target=&quot;_blank&quot;>610123146</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>9.686765304057602</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_321daf4a8e91f3c951e7f9f746677211.setContent(html_2e115e40a06c175990069e000befd684);
            
        

        poly_line_a920dd88cda7e9a258e4f0354c643bf3.bindPopup(popup_321daf4a8e91f3c951e7f9f746677211)
        ;

        
    
    
            var poly_line_bd2ce9f172a17b443683ef73429ca3a8 = L.polyline(
                [[41.9010221, -87.6517933], [41.9010926, -87.6519264], [41.9011818, -87.6520949]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e5d878e835949506200be2cab0ed27ea = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_591050f0ec7ca0141382942c86c8de05 = $(`<div id=&quot;html_591050f0ec7ca0141382942c86c8de05&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5778508827 → 261135167 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1125567637&quot; target=&quot;_blank&quot;>1125567637</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>30.633303326473396</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_e5d878e835949506200be2cab0ed27ea.setContent(html_591050f0ec7ca0141382942c86c8de05);
            
        

        poly_line_bd2ce9f172a17b443683ef73429ca3a8.bindPopup(popup_e5d878e835949506200be2cab0ed27ea)
        ;

        
    
    
            var poly_line_c7867739b2682c26c0f176ec77769d0a = L.polyline(
                [[41.9010221, -87.6517933], [41.9005836, -87.6509312], [41.9004146, -87.6505903]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_41b98c9301c953d64d2bb0bb2babe642 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1e6b2f51a32f27e670de4f6396a5de9b = $(`<div id=&quot;html_1e6b2f51a32f27e670de4f6396a5de9b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5778508827 → 6776130135 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1125567637&quot; target=&quot;_blank&quot;>1125567637</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>120.31827876977181</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_41b98c9301c953d64d2bb0bb2babe642.setContent(html_1e6b2f51a32f27e670de4f6396a5de9b);
            
        

        poly_line_c7867739b2682c26c0f176ec77769d0a.bindPopup(popup_41b98c9301c953d64d2bb0bb2babe642)
        ;

        
    
    
            var poly_line_b9fc06b3eeb05c358e3c1c1207542319 = L.polyline(
                [[41.9009512, -87.6518613], [41.9009523, -87.6518603], [41.900967, -87.6518457], [41.9010221, -87.6517933]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9bf2cadb2e448f76c3e856a70644926a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_38bf58df09085398dac22cbde519cf0d = $(`<div id=&quot;html_38bf58df09085398dac22cbde519cf0d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5778508829 → 5778508827 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/610123146&quot; target=&quot;_blank&quot;>610123146</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>9.686765304057602</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_9bf2cadb2e448f76c3e856a70644926a.setContent(html_38bf58df09085398dac22cbde519cf0d);
            
        

        poly_line_b9fc06b3eeb05c358e3c1c1207542319.bindPopup(popup_9bf2cadb2e448f76c3e856a70644926a)
        ;

        
    
    
            var poly_line_807dec2fd9aef6bae6b40f26a269cd50 = L.polyline(
                [[41.9078014, -87.6504231], [41.9074853, -87.6502901], [41.9074223, -87.6502621]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c202997bc67e66882e7960cbeae9ccb7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_84209b71bb3d4b70b8a7ee6bb31f1799 = $(`<div id=&quot;html_84209b71bb3d4b70b8a7ee6bb31f1799&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5817722309 → 5493322790 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/615199485&quot; target=&quot;_blank&quot;>615199485</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>44.21025117945722</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_c202997bc67e66882e7960cbeae9ccb7.setContent(html_84209b71bb3d4b70b8a7ee6bb31f1799);
            
        

        poly_line_807dec2fd9aef6bae6b40f26a269cd50.bindPopup(popup_c202997bc67e66882e7960cbeae9ccb7)
        ;

        
    
    
            var poly_line_c086fa31cefa024305f5dc812271a75b = L.polyline(
                [[41.9078014, -87.6504231], [41.9077852, -87.6506435], [41.9075121, -87.651176], [41.9074643, -87.6512728]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_bb3abf4456d19f18c6ef90429f5e9f8d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f50ae0afbf2398ae319d2f7eabc96257 = $(`<div id=&quot;html_f50ae0afbf2398ae319d2f7eabc96257&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5817722309 → 7155039937 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/766100811&quot; target=&quot;_blank&quot;>766100811</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>81.45781097343502</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_bb3abf4456d19f18c6ef90429f5e9f8d.setContent(html_f50ae0afbf2398ae319d2f7eabc96257);
            
        

        poly_line_c086fa31cefa024305f5dc812271a75b.bindPopup(popup_bb3abf4456d19f18c6ef90429f5e9f8d)
        ;

        
    
    
            var poly_line_cac5d599911bc2c1a8840eb2bd353ebe = L.polyline(
                [[41.9078014, -87.6504231], [41.9078039, -87.6503661], [41.9077954, -87.6500026], [41.9077938, -87.649904], [41.9077882, -87.6495253], [41.9077867, -87.6494227]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_98bad9378fadb0cf63fa1f8c184a5242 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a2bc65fc97245fa1e20f60bc3ba3377f = $(`<div id=&quot;html_a2bc65fc97245fa1e20f60bc3ba3377f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5817722309 → 7536224405 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/805893848&quot; target=&quot;_blank&quot;>805893848</a>, <a href=&quot;https://www.openstreetmap.org/way/805893849&quot; target=&quot;_blank&quot;>805893849</a>, <a href=&quot;https://www.openstreetmap.org/way/805893847&quot; target=&quot;_blank&quot;>805893847</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>82.81957532702792</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_98bad9378fadb0cf63fa1f8c184a5242.setContent(html_a2bc65fc97245fa1e20f60bc3ba3377f);
            
        

        poly_line_cac5d599911bc2c1a8840eb2bd353ebe.bindPopup(popup_98bad9378fadb0cf63fa1f8c184a5242)
        ;

        
    
    
            var poly_line_9357ba4d386024c8fbc1781b3922b826 = L.polyline(
                [[41.9070277, -87.6462414], [41.9071037, -87.6461871], [41.9071738, -87.6461323], [41.9072302, -87.6460956], [41.9072953, -87.6460796], [41.9074376, -87.6460809], [41.9075073, -87.6460816]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c24762baf10c573c9379291db6ad7990 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9bd5cad6c06478e885b8b14d1dfe65a2 = $(`<div id=&quot;html_9bd5cad6c06478e885b8b14d1dfe65a2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5828583627 → 5831748105 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24334374&quot; target=&quot;_blank&quot;>24334374</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>56.490177491331345</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Ogden Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_c24762baf10c573c9379291db6ad7990.setContent(html_9bd5cad6c06478e885b8b14d1dfe65a2);
            
        

        poly_line_9357ba4d386024c8fbc1781b3922b826.bindPopup(popup_c24762baf10c573c9379291db6ad7990)
        ;

        
    
    
            var poly_line_5a56ceedaac72d8830c9733feff86c03 = L.polyline(
                [[41.9070277, -87.6462414], [41.9069185, -87.6463148], [41.9068319, -87.6463086], [41.9067989, -87.6462812], [41.9067761, -87.6462623], [41.9067439, -87.6462274], [41.9066971, -87.6462229], [41.9064906, -87.6462184], [41.9064877, -87.6464397]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_68523c1e1f0ffbef862f554163227004 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1ad893c3e937989d9b9c17fa77fcd0c9 = $(`<div id=&quot;html_1ad893c3e937989d9b9c17fa77fcd0c9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5828583627 → 7070967340 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/757114243&quot; target=&quot;_blank&quot;>757114243</a>, <a href=&quot;https://www.openstreetmap.org/way/24334374&quot; target=&quot;_blank&quot;>24334374</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>['residential', 'service']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>81.61137428722326</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Ogden Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr>             </table>         </div>         </div>`)[0];
                popup_68523c1e1f0ffbef862f554163227004.setContent(html_1ad893c3e937989d9b9c17fa77fcd0c9);
            
        

        poly_line_5a56ceedaac72d8830c9733feff86c03.bindPopup(popup_68523c1e1f0ffbef862f554163227004)
        ;

        
    
    
            var poly_line_1008accdb77a34bad65a94c8c388a5c2 = L.polyline(
                [[41.9070277, -87.6462414], [41.9069915, -87.6461484], [41.9069763, -87.6461094], [41.9069816, -87.6458761], [41.907004, -87.6458153], [41.9070437, -87.6457876], [41.9074603, -87.6457996], [41.9074738, -87.6458159], [41.9075558, -87.6459145]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2e7f92b36064dbd011534b17eb52618f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_37924906683161182ec30a10a0b10723 = $(`<div id=&quot;html_37924906683161182ec30a10a0b10723&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5828583627 → 4131053950 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/616495173&quot; target=&quot;_blank&quot;>616495173</a>, <a href=&quot;https://www.openstreetmap.org/way/1351901495&quot; target=&quot;_blank&quot;>1351901495</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>102.82105593929496</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_2e7f92b36064dbd011534b17eb52618f.setContent(html_37924906683161182ec30a10a0b10723);
            
        

        poly_line_1008accdb77a34bad65a94c8c388a5c2.bindPopup(popup_2e7f92b36064dbd011534b17eb52618f)
        ;

        
    
    
            var poly_line_678498bed518861c536fa66b3c221584 = L.polyline(
                [[41.9075073, -87.6460816], [41.9074376, -87.6460809], [41.9072953, -87.6460796], [41.9072302, -87.6460956], [41.9071738, -87.6461323], [41.9071037, -87.6461871], [41.9070277, -87.6462414]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d2e4cd53b8ec2071bf718f4f70ac5c15 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c623f47db1815b5f035ecea98139bacd = $(`<div id=&quot;html_c623f47db1815b5f035ecea98139bacd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5831748105 → 5828583627 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24334374&quot; target=&quot;_blank&quot;>24334374</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>56.490177491331345</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Ogden Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_d2e4cd53b8ec2071bf718f4f70ac5c15.setContent(html_c623f47db1815b5f035ecea98139bacd);
            
        

        poly_line_678498bed518861c536fa66b3c221584.bindPopup(popup_d2e4cd53b8ec2071bf718f4f70ac5c15)
        ;

        
    
    
            var poly_line_adcf991e9685b84b8ad8eca2400989ed = L.polyline(
                [[41.9075073, -87.6460816], [41.9075173, -87.6459933], [41.9075558, -87.6459145]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f79687457201e28b99d33721e9949f6f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3758ee9f0f0a3107662a1d860b24fbdc = $(`<div id=&quot;html_3758ee9f0f0a3107662a1d860b24fbdc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5831748105 → 4131053950 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/616876452&quot; target=&quot;_blank&quot;>616876452</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>15.191988679175262</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Ogden Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_f79687457201e28b99d33721e9949f6f.setContent(html_3758ee9f0f0a3107662a1d860b24fbdc);
            
        

        poly_line_adcf991e9685b84b8ad8eca2400989ed.bindPopup(popup_f79687457201e28b99d33721e9949f6f)
        ;

        
    
    
            var poly_line_a2ff2644ca60e602f0820cd226d5fe76 = L.polyline(
                [[41.9075073, -87.6460816], [41.9075063, -87.6461214], [41.907495, -87.6467777]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_46625fa10e7bcf29ea906e4877f7d365 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_139cc147b74b152d2d76bb4041c43d2b = $(`<div id=&quot;html_139cc147b74b152d2d76bb4041c43d2b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5831748105 → 11310995656 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1024669102&quot; target=&quot;_blank&quot;>1024669102</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>57.62151189205624</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Schiller Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_46625fa10e7bcf29ea906e4877f7d365.setContent(html_139cc147b74b152d2d76bb4041c43d2b);
            
        

        poly_line_a2ff2644ca60e602f0820cd226d5fe76.bindPopup(popup_46625fa10e7bcf29ea906e4877f7d365)
        ;

        
    
    
            var poly_line_056f85dbe2201c3aa386b78c515185ec = L.polyline(
                [[41.9034608, -87.6599663], [41.9035836, -87.6599676], [41.9036174, -87.6599695], [41.9037383, -87.6599765]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_898e4231d3241740abb63e2e158579d7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_179db1e8e328237f05fb4f85e8e92c8a = $(`<div id=&quot;html_179db1e8e328237f05fb4f85e8e92c8a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5868632532 → 5493211400 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1292541157&quot; target=&quot;_blank&quot;>1292541157</a>, <a href=&quot;https://www.openstreetmap.org/way/621238167&quot; target=&quot;_blank&quot;>621238167</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>30.872823686485972</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_898e4231d3241740abb63e2e158579d7.setContent(html_179db1e8e328237f05fb4f85e8e92c8a);
            
        

        poly_line_056f85dbe2201c3aa386b78c515185ec.bindPopup(popup_898e4231d3241740abb63e2e158579d7)
        ;

        
    
    
            var poly_line_1c96122aa58d501266ba40e3eb0e6812 = L.polyline(
                [[41.9034608, -87.6599663], [41.9034708, -87.659321], [41.9034763, -87.6590611], [41.9034802, -87.6588746]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e7000fb463956af3c2c89f89e9a4f9e2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f1229aa742b64a7476e6d6261cc926bd = $(`<div id=&quot;html_f1229aa742b64a7476e6d6261cc926bd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5868632532 → 12187280090 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/802966345&quot; target=&quot;_blank&quot;>802966345</a>, <a href=&quot;https://www.openstreetmap.org/way/1377429951&quot; target=&quot;_blank&quot;>1377429951</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>5</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>90.37467270697513</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_e7000fb463956af3c2c89f89e9a4f9e2.setContent(html_f1229aa742b64a7476e6d6261cc926bd);
            
        

        poly_line_1c96122aa58d501266ba40e3eb0e6812.bindPopup(popup_e7000fb463956af3c2c89f89e9a4f9e2)
        ;

        
    
    
            var poly_line_7a9ba72fa01a787578508883f7b44c75 = L.polyline(
                [[41.9034608, -87.6599663], [41.9034577, -87.6601641], [41.9034521, -87.6605229], [41.9034499, -87.6606648]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f77bd8424f98d94452805363a54bad2c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a4f4ec3477be74e96f048baede5c94eb = $(`<div id=&quot;html_a4f4ec3477be74e96f048baede5c94eb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5868632532 → 734122955 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/145813128&quot; target=&quot;_blank&quot;>145813128</a>, <a href=&quot;https://www.openstreetmap.org/way/1213415577&quot; target=&quot;_blank&quot;>1213415577</a>, <a href=&quot;https://www.openstreetmap.org/way/1213415578&quot; target=&quot;_blank&quot;>1213415578</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>57.820080198231295</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_f77bd8424f98d94452805363a54bad2c.setContent(html_a4f4ec3477be74e96f048baede5c94eb);
            
        

        poly_line_7a9ba72fa01a787578508883f7b44c75.bindPopup(popup_f77bd8424f98d94452805363a54bad2c)
        ;

        
    
    
            var poly_line_d807a507289c180f55603204fd21482a = L.polyline(
                [[41.9049576, -87.6596841], [41.9049624, -87.6596367], [41.9049648, -87.6596133]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3bc6ff3ba34f1e7c1370dceeeff03f99 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_97b5d44ef22f064615a43a0113e2d127 = $(`<div id=&quot;html_97b5d44ef22f064615a43a0113e2d127&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5870661824 → 11967979356 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/621443145&quot; target=&quot;_blank&quot;>621443145</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>5.913667006335845</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_3bc6ff3ba34f1e7c1370dceeeff03f99.setContent(html_97b5d44ef22f064615a43a0113e2d127);
            
        

        poly_line_d807a507289c180f55603204fd21482a.bindPopup(popup_3bc6ff3ba34f1e7c1370dceeeff03f99)
        ;

        
    
    
            var poly_line_fd1e6c5bf2307a99861a41a241398d0b = L.polyline(
                [[41.8981844, -87.6565884], [41.8983833, -87.6565954]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f17d24c710541f2c7fcfa4e9cd36b696 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_632b6f492efc809058fc1454ca60602d = $(`<div id=&quot;html_632b6f492efc809058fc1454ca60602d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5907549148 → 261185599 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1386550109&quot; target=&quot;_blank&quot;>1386550109</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.124289243132814</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_f17d24c710541f2c7fcfa4e9cd36b696.setContent(html_632b6f492efc809058fc1454ca60602d);
            
        

        poly_line_fd1e6c5bf2307a99861a41a241398d0b.bindPopup(popup_f17d24c710541f2c7fcfa4e9cd36b696)
        ;

        
    
    
            var poly_line_ef7ad2204a32e88231fdb84e10d3bb50 = L.polyline(
                [[41.8981844, -87.6565884], [41.8979974, -87.6565817]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d3cbda9f112807d9ae7e82331b9503fb = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6fd12a81fb08a8871b1b26dcd7639f69 = $(`<div id=&quot;html_6fd12a81fb08a8871b1b26dcd7639f69&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5907549148 → 4035706303 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1386550109&quot; target=&quot;_blank&quot;>1386550109</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.800873676387486</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_d3cbda9f112807d9ae7e82331b9503fb.setContent(html_6fd12a81fb08a8871b1b26dcd7639f69);
            
        

        poly_line_ef7ad2204a32e88231fdb84e10d3bb50.bindPopup(popup_d3cbda9f112807d9ae7e82331b9503fb)
        ;

        
    
    
            var poly_line_5bdafb0d66792831d72f1438072fecc6 = L.polyline(
                [[41.8981844, -87.6565884], [41.8981821, -87.6567031], [41.8981782, -87.6569018]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_bde703a2773221489def7a1ae121dcc2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_aae4180723c02a6383f90a3170458b83 = $(`<div id=&quot;html_aae4180723c02a6383f90a3170458b83&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5907549148 → 5907549149 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/625698432&quot; target=&quot;_blank&quot;>625698432</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>25.948069849731034</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_bde703a2773221489def7a1ae121dcc2.setContent(html_aae4180723c02a6383f90a3170458b83);
            
        

        poly_line_5bdafb0d66792831d72f1438072fecc6.bindPopup(popup_bde703a2773221489def7a1ae121dcc2)
        ;

        
    
    
            var poly_line_99895b62687af71a39f76b06d7dde77a = L.polyline(
                [[41.8981782, -87.6569018], [41.8980418, -87.6568944]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_60da11c48c10b6a2d032728c71f904df = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_875841070f5f681411d2c310091ebac4 = $(`<div id=&quot;html_875841070f5f681411d2c310091ebac4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5907549149 → 5907549151 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/625698433&quot; target=&quot;_blank&quot;>625698433</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>15.17937068568207</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_60da11c48c10b6a2d032728c71f904df.setContent(html_875841070f5f681411d2c310091ebac4);
            
        

        poly_line_99895b62687af71a39f76b06d7dde77a.bindPopup(popup_60da11c48c10b6a2d032728c71f904df)
        ;

        
    
    
            var poly_line_fb4c9becffea163605e3c9c4a44f35b8 = L.polyline(
                [[41.8981782, -87.6569018], [41.8983014, -87.6569134]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a9e7cf88a93e976568bfb0b509050078 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2e64fe0f7738d5790f79488f3eaee222 = $(`<div id=&quot;html_2e64fe0f7738d5790f79488f3eaee222&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5907549149 → 5907549150 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/625698433&quot; target=&quot;_blank&quot;>625698433</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>13.732836074045808</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_a9e7cf88a93e976568bfb0b509050078.setContent(html_2e64fe0f7738d5790f79488f3eaee222);
            
        

        poly_line_fb4c9becffea163605e3c9c4a44f35b8.bindPopup(popup_a9e7cf88a93e976568bfb0b509050078)
        ;

        
    
    
            var poly_line_1c098abe27a4c605c6b9ea34b010603c = L.polyline(
                [[41.8981782, -87.6569018], [41.8981821, -87.6567031], [41.8981844, -87.6565884]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_859b613ddf0eeeb82daa5f12602908b6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ec89265ae9ee3e30e6cd039418b04f51 = $(`<div id=&quot;html_ec89265ae9ee3e30e6cd039418b04f51&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5907549149 → 5907549148 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/625698432&quot; target=&quot;_blank&quot;>625698432</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>25.948069849731034</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_859b613ddf0eeeb82daa5f12602908b6.setContent(html_ec89265ae9ee3e30e6cd039418b04f51);
            
        

        poly_line_1c098abe27a4c605c6b9ea34b010603c.bindPopup(popup_859b613ddf0eeeb82daa5f12602908b6)
        ;

        
    
    
            var poly_line_0bbf29d671b5955208d42fa6c827ee54 = L.polyline(
                [[41.8983014, -87.6569134], [41.8981782, -87.6569018]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ef30a2cdb776388b8c765c51e77fe070 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7087731e1eb52bdb1b6ae9ddc67b4bee = $(`<div id=&quot;html_7087731e1eb52bdb1b6ae9ddc67b4bee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5907549150 → 5907549149 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/625698433&quot; target=&quot;_blank&quot;>625698433</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>13.732836074045808</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_ef30a2cdb776388b8c765c51e77fe070.setContent(html_7087731e1eb52bdb1b6ae9ddc67b4bee);
            
        

        poly_line_0bbf29d671b5955208d42fa6c827ee54.bindPopup(popup_ef30a2cdb776388b8c765c51e77fe070)
        ;

        
    
    
            var poly_line_fd0b5faf0a560e719a3e9a29724418f2 = L.polyline(
                [[41.8980418, -87.6568944], [41.8981782, -87.6569018]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ed3f36bd82a967978d642885fec87ef3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0eff394922b2bcd61fc9e6b52625d378 = $(`<div id=&quot;html_0eff394922b2bcd61fc9e6b52625d378&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5907549151 → 5907549149 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/625698433&quot; target=&quot;_blank&quot;>625698433</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>15.17937068568207</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_ed3f36bd82a967978d642885fec87ef3.setContent(html_0eff394922b2bcd61fc9e6b52625d378);
            
        

        poly_line_fd0b5faf0a560e719a3e9a29724418f2.bindPopup(popup_ed3f36bd82a967978d642885fec87ef3)
        ;

        
    
    
            var poly_line_7cb22f825a70432efea78b0a9ab364e2 = L.polyline(
                [[41.8994123, -87.6585924], [41.8985568, -87.6585601]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_bc83ebd8fc57c7461f01e48cc8507cb9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_faf5a5b10e99c470a6089bf1e970efe6 = $(`<div id=&quot;html_faf5a5b10e99c470a6089bf1e970efe6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5907549156 → 4100010525 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24098076&quot; target=&quot;_blank&quot;>24098076</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>95.16495003098836</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Willard Court</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_bc83ebd8fc57c7461f01e48cc8507cb9.setContent(html_faf5a5b10e99c470a6089bf1e970efe6);
            
        

        poly_line_7cb22f825a70432efea78b0a9ab364e2.bindPopup(popup_bc83ebd8fc57c7461f01e48cc8507cb9)
        ;

        
    
    
            var poly_line_63ee8595378a6c498cb96b1fa811287d = L.polyline(
                [[41.8994123, -87.6585924], [41.8997744, -87.6586059], [41.8998485, -87.6586089]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d4dc1bb6a9141a6e0fcf0325319545c8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1bdf52f6f8d03550b9be1898b5fbdcdf = $(`<div id=&quot;html_1bdf52f6f8d03550b9be1898b5fbdcdf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5907549156 → 261261682 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24098076&quot; target=&quot;_blank&quot;>24098076</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>48.52253550667622</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Willard Court</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_d4dc1bb6a9141a6e0fcf0325319545c8.setContent(html_1bdf52f6f8d03550b9be1898b5fbdcdf);
            
        

        poly_line_63ee8595378a6c498cb96b1fa811287d.bindPopup(popup_d4dc1bb6a9141a6e0fcf0325319545c8)
        ;

        
    
    
            var poly_line_56a74e7adf5faaeb4241003e58c13ad4 = L.polyline(
                [[41.8994123, -87.6585924], [41.8994144, -87.6584972], [41.8994292, -87.657781]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2d0bf45671152e2f38b676cd12da6847 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a1535a72c367e834100141974756ba9f = $(`<div id=&quot;html_a1535a72c367e834100141974756ba9f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5907549156 → 5907549157 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/625698435&quot; target=&quot;_blank&quot;>625698435</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>67.18144374886283</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_2d0bf45671152e2f38b676cd12da6847.setContent(html_a1535a72c367e834100141974756ba9f);
            
        

        poly_line_56a74e7adf5faaeb4241003e58c13ad4.bindPopup(popup_2d0bf45671152e2f38b676cd12da6847)
        ;

        
    
    
            var poly_line_5cdb392189a65362081ffaa3178a9754 = L.polyline(
                [[41.8994292, -87.657781], [41.8994144, -87.6584972], [41.8994123, -87.6585924]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5068ee8dd0116e583a851438dad6953a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c2c89149c908e96b73fea07b70bceddc = $(`<div id=&quot;html_c2c89149c908e96b73fea07b70bceddc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 5907549157 → 5907549156 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/625698435&quot; target=&quot;_blank&quot;>625698435</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>67.18144374886283</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_5068ee8dd0116e583a851438dad6953a.setContent(html_c2c89149c908e96b73fea07b70bceddc);
            
        

        poly_line_5cdb392189a65362081ffaa3178a9754.bindPopup(popup_5068ee8dd0116e583a851438dad6953a)
        ;

        
    
    
            var poly_line_1cb350b6725acbe553dc6be8a79186a0 = L.polyline(
                [[41.9014653, -87.6438399], [41.9014681, -87.6435813]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_17510fb3ca92c20af3123ec6a53f2c7b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_15f9b19bc072376f3aaa4f70021bbbf5 = $(`<div id=&quot;html_15f9b19bc072376f3aaa4f70021bbbf5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6093478457 → 10866693147 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/30954124&quot; target=&quot;_blank&quot;>30954124</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.40448764555389</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Hobbie Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_17510fb3ca92c20af3123ec6a53f2c7b.setContent(html_15f9b19bc072376f3aaa4f70021bbbf5);
            
        

        poly_line_1cb350b6725acbe553dc6be8a79186a0.bindPopup(popup_17510fb3ca92c20af3123ec6a53f2c7b)
        ;

        
    
    
            var poly_line_2411830ac66fe5030385aa3d19a306b3 = L.polyline(
                [[41.9014653, -87.6438399], [41.9014622, -87.6441425]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2d97c711bfc2cfce38d013744f1f1670 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c98a2691c5b36ae5ce2624d3c4130186 = $(`<div id=&quot;html_c98a2691c5b36ae5ce2624d3c4130186&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6093478457 → 3408107721 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/30954124&quot; target=&quot;_blank&quot;>30954124</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>25.04611933374938</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Hobbie Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_2d97c711bfc2cfce38d013744f1f1670.setContent(html_c98a2691c5b36ae5ce2624d3c4130186);
            
        

        poly_line_2411830ac66fe5030385aa3d19a306b3.bindPopup(popup_2d97c711bfc2cfce38d013744f1f1670)
        ;

        
    
    
            var poly_line_4983fe8e4a0623af22fba26b2d46e19b = L.polyline(
                [[41.9014653, -87.6438399], [41.9014144, -87.6438374], [41.9013856, -87.643836], [41.9012176, -87.6438279], [41.9010938, -87.6437698], [41.9006487, -87.6435663], [41.9006554, -87.6432114], [41.9006561, -87.6431742], [41.9006576, -87.6430975]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fdce2f9701f88eb7777736a4db90e104 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4f220a10d6989dfe23d26795594d7b06 = $(`<div id=&quot;html_4f220a10d6989dfe23d26795594d7b06&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6093478457 → 6093478458 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1168437403&quot; target=&quot;_blank&quot;>1168437403</a>, <a href=&quot;https://www.openstreetmap.org/way/649250325&quot; target=&quot;_blank&quot;>649250325</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>133.2345179357169</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_fdce2f9701f88eb7777736a4db90e104.setContent(html_4f220a10d6989dfe23d26795594d7b06);
            
        

        poly_line_4983fe8e4a0623af22fba26b2d46e19b.bindPopup(popup_fdce2f9701f88eb7777736a4db90e104)
        ;

        
    
    
            var poly_line_935e778eb67a04a76037424e93ed63da = L.polyline(
                [[41.9006576, -87.6430975], [41.9012146, -87.6431191]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1987c8d926a68597d8ea0b15b002ebab = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1e49d2700a0a25ab9b11152aca53aae7 = $(`<div id=&quot;html_1e49d2700a0a25ab9b11152aca53aae7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6093478458 → 8410482740 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59208011&quot; target=&quot;_blank&quot;>59208011</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>61.96145537069624</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_1987c8d926a68597d8ea0b15b002ebab.setContent(html_1e49d2700a0a25ab9b11152aca53aae7);
            
        

        poly_line_935e778eb67a04a76037424e93ed63da.bindPopup(popup_1987c8d926a68597d8ea0b15b002ebab)
        ;

        
    
    
            var poly_line_1d25c12f89fa1fda88e645adf576df7c = L.polyline(
                [[41.9006576, -87.6430975], [41.9005238, -87.6430923], [41.9004951, -87.6430911], [41.9004145, -87.6430881]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_83093f58dde7aa15c97f455116446d08 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7ee2a703a57200c517dcfa0b6691503f = $(`<div id=&quot;html_7ee2a703a57200c517dcfa0b6691503f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6093478458 → 261184866 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59208011&quot; target=&quot;_blank&quot;>59208011</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>27.042731727368768</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_83093f58dde7aa15c97f455116446d08.setContent(html_7ee2a703a57200c517dcfa0b6691503f);
            
        

        poly_line_1d25c12f89fa1fda88e645adf576df7c.bindPopup(popup_83093f58dde7aa15c97f455116446d08)
        ;

        
    
    
            var poly_line_8896dc22223a193b4ddf7eb937a37595 = L.polyline(
                [[41.9006576, -87.6430975], [41.9006561, -87.6431742], [41.9006554, -87.6432114], [41.9006487, -87.6435663], [41.9010938, -87.6437698], [41.9012176, -87.6438279], [41.9013856, -87.643836], [41.9014144, -87.6438374], [41.9014653, -87.6438399]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8583e32f8a0e49eb2339c62c88794638 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a9fe2bce046e97ecfdcb9dab2e5f22f7 = $(`<div id=&quot;html_a9fe2bce046e97ecfdcb9dab2e5f22f7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6093478458 → 6093478457 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1168437403&quot; target=&quot;_blank&quot;>1168437403</a>, <a href=&quot;https://www.openstreetmap.org/way/649250325&quot; target=&quot;_blank&quot;>649250325</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>133.23451793571687</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_8583e32f8a0e49eb2339c62c88794638.setContent(html_a9fe2bce046e97ecfdcb9dab2e5f22f7);
            
        

        poly_line_8896dc22223a193b4ddf7eb937a37595.bindPopup(popup_8583e32f8a0e49eb2339c62c88794638)
        ;

        
    
    
            var poly_line_617749bef46484bb54407e402469f302 = L.polyline(
                [[41.9110831, -87.6511051], [41.9112507, -87.6511109]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ecc197fcc8bd4c919b074244e1008632 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_90bfb435adb811f5ad65dc108df837c5 = $(`<div id=&quot;html_90bfb435adb811f5ad65dc108df837c5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6228387907 → 6228387908 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/665448252&quot; target=&quot;_blank&quot;>665448252</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>access</td><td style='padding:2px 6px;'>customers</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.64247510270763</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_ecc197fcc8bd4c919b074244e1008632.setContent(html_90bfb435adb811f5ad65dc108df837c5);
            
        

        poly_line_617749bef46484bb54407e402469f302.bindPopup(popup_ecc197fcc8bd4c919b074244e1008632)
        ;

        
    
    
            var poly_line_be5bf5e5b630f552142e1f538a2c81c4 = L.polyline(
                [[41.9110831, -87.6511051], [41.9110826, -87.651136]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_87debf4e42bea7459202b09375775093 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_dcc84a9bf4cf5ea816910cf36cbd9abe = $(`<div id=&quot;html_dcc84a9bf4cf5ea816910cf36cbd9abe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6228387907 → 2109658710 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1177634756&quot; target=&quot;_blank&quot;>1177634756</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>access</td><td style='padding:2px 6px;'>customers</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>2.5575614197592604</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_87debf4e42bea7459202b09375775093.setContent(html_dcc84a9bf4cf5ea816910cf36cbd9abe);
            
        

        poly_line_be5bf5e5b630f552142e1f538a2c81c4.bindPopup(popup_87debf4e42bea7459202b09375775093)
        ;

        
    
    
            var poly_line_4718c6790f113f0a39f97c58791d285d = L.polyline(
                [[41.9110831, -87.6511051], [41.9110873, -87.6507894]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d8cbf5086e891609ab74eb8877052fd9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8f8adb59899d3c76d10e4c97f9d1e992 = $(`<div id=&quot;html_8f8adb59899d3c76d10e4c97f9d1e992&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6228387907 → 2109658713 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1177634757&quot; target=&quot;_blank&quot;>1177634757</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>access</td><td style='padding:2px 6px;'>customers</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>26.12816472114564</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_d8cbf5086e891609ab74eb8877052fd9.setContent(html_8f8adb59899d3c76d10e4c97f9d1e992);
            
        

        poly_line_4718c6790f113f0a39f97c58791d285d.bindPopup(popup_d8cbf5086e891609ab74eb8877052fd9)
        ;

        
    
    
            var poly_line_6b0ac5ad10f65ea1ebb55099f2cb814d = L.polyline(
                [[41.9112507, -87.6511109], [41.9112436, -87.651635]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_304b98b7eb91f7e0984fe69bda926440 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_26d068aa0d2ae8df4b03d1eddc86e49e = $(`<div id=&quot;html_26d068aa0d2ae8df4b03d1eddc86e49e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6228387908 → 2109658729 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/201015490&quot; target=&quot;_blank&quot;>201015490</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>access</td><td style='padding:2px 6px;'>customers</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>43.37604411617858</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_304b98b7eb91f7e0984fe69bda926440.setContent(html_26d068aa0d2ae8df4b03d1eddc86e49e);
            
        

        poly_line_6b0ac5ad10f65ea1ebb55099f2cb814d.bindPopup(popup_304b98b7eb91f7e0984fe69bda926440)
        ;

        
    
    
            var poly_line_8031ff3b050cec8c046aa9a9ddd62648 = L.polyline(
                [[41.9112507, -87.6511109], [41.9112557, -87.6507391]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a488f6ab30c973b3b288226b0c594b3d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e3e555ae69e86715ae26c69157f1ba7d = $(`<div id=&quot;html_e3e555ae69e86715ae26c69157f1ba7d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6228387908 → 2109658727 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/201015490&quot; target=&quot;_blank&quot;>201015490</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>access</td><td style='padding:2px 6px;'>customers</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>30.77117496263666</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_a488f6ab30c973b3b288226b0c594b3d.setContent(html_e3e555ae69e86715ae26c69157f1ba7d);
            
        

        poly_line_8031ff3b050cec8c046aa9a9ddd62648.bindPopup(popup_a488f6ab30c973b3b288226b0c594b3d)
        ;

        
    
    
            var poly_line_9489caa2086635e6d976db4e46c9feb3 = L.polyline(
                [[41.9020243, -87.6512834], [41.9016908, -87.6510086]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_cc7f6af8da988a4408a3f1eb73c3a920 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3a4c1db0c7badd48c46a6e810b74ff93 = $(`<div id=&quot;html_3a4c1db0c7badd48c46a6e810b74ff93&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6372221643 → 261135168 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1125567629&quot; target=&quot;_blank&quot;>1125567629</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>43.50202992785703</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Hickory Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_cc7f6af8da988a4408a3f1eb73c3a920.setContent(html_3a4c1db0c7badd48c46a6e810b74ff93);
            
        

        poly_line_9489caa2086635e6d976db4e46c9feb3.bindPopup(popup_cc7f6af8da988a4408a3f1eb73c3a920)
        ;

        
    
    
            var poly_line_7bb63f54e6a491857cca70a555146054 = L.polyline(
                [[41.9020243, -87.6512834], [41.9020047, -87.6513257], [41.9019467, -87.6514513], [41.901827, -87.6517104], [41.901703, -87.6518313]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_766000eeaf24dd06b305b39c8f98c417 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1a74cd8cc60d8a7ba4a6d4b0130e4989 = $(`<div id=&quot;html_1a74cd8cc60d8a7ba4a6d4b0130e4989&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6372221643 → 6572477137 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/767436172&quot; target=&quot;_blank&quot;>767436172</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>58.63138353703731</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_766000eeaf24dd06b305b39c8f98c417.setContent(html_1a74cd8cc60d8a7ba4a6d4b0130e4989);
            
        

        poly_line_7bb63f54e6a491857cca70a555146054.bindPopup(popup_766000eeaf24dd06b305b39c8f98c417)
        ;

        
    
    
            var poly_line_9ab542a22a72af0b4756d2773088aefd = L.polyline(
                [[41.9020243, -87.6512834], [41.903018, -87.6520964], [41.9034194, -87.6524248], [41.9034927, -87.6524834], [41.9035777, -87.6525516]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8ec782378c41dfb437260a69dd94106b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ebf5af9bdab81a5ba27eb15ac65b0570 = $(`<div id=&quot;html_ebf5af9bdab81a5ba27eb15ac65b0570&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6372221643 → 102713545 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1125567629&quot; target=&quot;_blank&quot;>1125567629</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>202.11874509429353</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Hickory Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_8ec782378c41dfb437260a69dd94106b.setContent(html_ebf5af9bdab81a5ba27eb15ac65b0570);
            
        

        poly_line_9ab542a22a72af0b4756d2773088aefd.bindPopup(popup_8ec782378c41dfb437260a69dd94106b)
        ;

        
    
    
            var poly_line_717b569ee6c6d06cb6c8953cd9037b1a = L.polyline(
                [[41.9064051, -87.6465834], [41.9063961, -87.6471127], [41.9063948, -87.64719]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_34dc038e63b57a5c1d80a9be48cf9b08 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7a94b4ca54922dc7e0a5cb520b2f5edf = $(`<div id=&quot;html_7a94b4ca54922dc7e0a5cb520b2f5edf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6528671786 → 935894851 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/221319850&quot; target=&quot;_blank&quot;>221319850</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>50.21254353630876</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Evergreen Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_34dc038e63b57a5c1d80a9be48cf9b08.setContent(html_7a94b4ca54922dc7e0a5cb520b2f5edf);
            
        

        poly_line_717b569ee6c6d06cb6c8953cd9037b1a.bindPopup(popup_34dc038e63b57a5c1d80a9be48cf9b08)
        ;

        
    
    
            var poly_line_75c9e8a75e3970c76fd74c14e57e7b7a = L.polyline(
                [[41.901703, -87.6518313], [41.901561, -87.6517251]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fc9291a2ad6baaf80e6f32866467d5d4 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6a528713600bf31ef5d1c31576054986 = $(`<div id=&quot;html_6a528713600bf31ef5d1c31576054986&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6572477137 → 7165417932 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/722396438&quot; target=&quot;_blank&quot;>722396438</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.071145289993833</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_fc9291a2ad6baaf80e6f32866467d5d4.setContent(html_6a528713600bf31ef5d1c31576054986);
            
        

        poly_line_75c9e8a75e3970c76fd74c14e57e7b7a.bindPopup(popup_fc9291a2ad6baaf80e6f32866467d5d4)
        ;

        
    
    
            var poly_line_8055229442c494943e2e096aeaf8a6af = L.polyline(
                [[41.901703, -87.6518313], [41.901827, -87.6517104], [41.9019467, -87.6514513], [41.9020047, -87.6513257], [41.9020243, -87.6512834]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_41d0b0e7b80091862082e38814ef0669 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e8386bfa30ebe4d6a01a1cf55106c0b4 = $(`<div id=&quot;html_e8386bfa30ebe4d6a01a1cf55106c0b4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6572477137 → 6372221643 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/767436172&quot; target=&quot;_blank&quot;>767436172</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>58.631383537037316</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_41d0b0e7b80091862082e38814ef0669.setContent(html_e8386bfa30ebe4d6a01a1cf55106c0b4);
            
        

        poly_line_8055229442c494943e2e096aeaf8a6af.bindPopup(popup_41d0b0e7b80091862082e38814ef0669)
        ;

        
    
    
            var poly_line_d2a9ce5486743f42bfdc3144d5083f58 = L.polyline(
                [[41.9074207, -87.6522235], [41.9075748, -87.6518943]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bfef45&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#bfef45&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_18a617761b102ae9be15d64944b81973 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3b010ad60bef15c6f63289dd2f5c074c = $(`<div id=&quot;html_3b010ad60bef15c6f63289dd2f5c074c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6774834574 → 7222200881 (key 0)<br>                 <b>Component</b> 7<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/773741076&quot; target=&quot;_blank&quot;>773741076</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>access</td><td style='padding:2px 6px;'>customers</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>32.183460822683415</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_18a617761b102ae9be15d64944b81973.setContent(html_3b010ad60bef15c6f63289dd2f5c074c);
            
        

        poly_line_d2a9ce5486743f42bfdc3144d5083f58.bindPopup(popup_18a617761b102ae9be15d64944b81973)
        ;

        
    
    
            var poly_line_732f1d36f532fb8d62f15fa218f0a984 = L.polyline(
                [[41.9014058, -87.651609], [41.901561, -87.6517251]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e69ed28b3371969df509a148a49e9b75 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a14c7921d4cce91bfd2757fd0d2cf246 = $(`<div id=&quot;html_a14c7921d4cce91bfd2757fd0d2cf246&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6776130125 → 7165417932 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/722396438&quot; target=&quot;_blank&quot;>722396438</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.75213175979376</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_e69ed28b3371969df509a148a49e9b75.setContent(html_a14c7921d4cce91bfd2757fd0d2cf246);
            
        

        poly_line_732f1d36f532fb8d62f15fa218f0a984.bindPopup(popup_e69ed28b3371969df509a148a49e9b75)
        ;

        
    
    
            var poly_line_2aa34c1696d5bbd5b36abcfd07c57eb1 = L.polyline(
                [[41.9014058, -87.651609], [41.901667, -87.6510588], [41.9016908, -87.6510086]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1ab7c04aea1435c13c154d790fb0613c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6ea3c9dbfeb752b1eb7641957c5c2423 = $(`<div id=&quot;html_6ea3c9dbfeb752b1eb7641957c5c2423&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6776130125 → 261135168 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24074461&quot; target=&quot;_blank&quot;>24074461</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>58.93561990936165</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Bliss Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_1ab7c04aea1435c13c154d790fb0613c.setContent(html_6ea3c9dbfeb752b1eb7641957c5c2423);
            
        

        poly_line_2aa34c1696d5bbd5b36abcfd07c57eb1.bindPopup(popup_1ab7c04aea1435c13c154d790fb0613c)
        ;

        
    
    
            var poly_line_6addea5a5bfa34cb9aa31c9df88bbd52 = L.polyline(
                [[41.9014058, -87.651609], [41.9012544, -87.6519341], [41.9012416, -87.6519615]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a422c7e6dd5cd852c4d379578abaaa73 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_90ffa403f526f2fffe1333ece439c784 = $(`<div id=&quot;html_90ffa403f526f2fffe1333ece439c784&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6776130125 → 10198867985 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24074461&quot; target=&quot;_blank&quot;>24074461</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>34.4160409977796</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Bliss Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_a422c7e6dd5cd852c4d379578abaaa73.setContent(html_90ffa403f526f2fffe1333ece439c784);
            
        

        poly_line_6addea5a5bfa34cb9aa31c9df88bbd52.bindPopup(popup_a422c7e6dd5cd852c4d379578abaaa73)
        ;

        
    
    
            var poly_line_7914ff74f413c5589b76ba7617527266 = L.polyline(
                [[41.9003464, -87.650456], [41.9003585, -87.6504792]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ef806e40318b392f97337aaf5e84e8a8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8d39aa2413acf8a5b374008013ca4b28 = $(`<div id=&quot;html_8d39aa2413acf8a5b374008013ca4b28&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6776130126 → 261249589 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24096218&quot; target=&quot;_blank&quot;>24096218</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>2.3445859684136026</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_ef806e40318b392f97337aaf5e84e8a8.setContent(html_8d39aa2413acf8a5b374008013ca4b28);
            
        

        poly_line_7914ff74f413c5589b76ba7617527266.bindPopup(popup_ef806e40318b392f97337aaf5e84e8a8)
        ;

        
    
    
            var poly_line_50aa5c7c20aa58791b4717f75368f77d = L.polyline(
                [[41.9003464, -87.650456], [41.9003008, -87.6503685], [41.8999002, -87.6495999]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_afedfd37ca0a6cd98b16e538e9054fff = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_114a88fc8fc8ea1043fe595bb3ecc7c8 = $(`<div id=&quot;html_114a88fc8fc8ea1043fe595bb3ecc7c8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6776130126 → 12177075887 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24096218&quot; target=&quot;_blank&quot;>24096218</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>86.49828543467848</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_afedfd37ca0a6cd98b16e538e9054fff.setContent(html_114a88fc8fc8ea1043fe595bb3ecc7c8);
            
        

        poly_line_50aa5c7c20aa58791b4717f75368f77d.bindPopup(popup_afedfd37ca0a6cd98b16e538e9054fff)
        ;

        
    
    
            var poly_line_480109c26ccb8bd89b9d9d6ac84faaf5 = L.polyline(
                [[41.9004146, -87.6505903], [41.9003585, -87.6504792]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_437e75a95d5d762d947f565c1b76b23f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_70e9f2cbb029ab8ec180bde652460d24 = $(`<div id=&quot;html_70e9f2cbb029ab8ec180bde652460d24&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6776130135 → 261249589 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1125567637&quot; target=&quot;_blank&quot;>1125567637</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>11.111311148898983</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_437e75a95d5d762d947f565c1b76b23f.setContent(html_70e9f2cbb029ab8ec180bde652460d24);
            
        

        poly_line_480109c26ccb8bd89b9d9d6ac84faaf5.bindPopup(popup_437e75a95d5d762d947f565c1b76b23f)
        ;

        
    
    
            var poly_line_3c7c106da5946006e6196672fd55934a = L.polyline(
                [[41.9004146, -87.6505903], [41.9003754, -87.6506298], [41.9003598, -87.6506448], [41.9003544, -87.6506506], [41.9003182, -87.6506899], [41.9000001, -87.6510356], [41.8999588, -87.6510323], [41.8998992, -87.6509344], [41.8999046, -87.6508947], [41.8999817, -87.6508125], [41.9001749, -87.6506117], [41.9002497, -87.6505434], [41.9002824, -87.650513], [41.900289, -87.6505071], [41.9003464, -87.650456]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_83a1d3fb3613c93fabd1c202a810a80d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_cf5a182c16101a643369075baa79e8f0 = $(`<div id=&quot;html_cf5a182c16101a643369075baa79e8f0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6776130135 → 6776130126 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/722396439&quot; target=&quot;_blank&quot;>722396439</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>138.54961007539833</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_83a1d3fb3613c93fabd1c202a810a80d.setContent(html_cf5a182c16101a643369075baa79e8f0);
            
        

        poly_line_3c7c106da5946006e6196672fd55934a.bindPopup(popup_83a1d3fb3613c93fabd1c202a810a80d)
        ;

        
    
    
            var poly_line_58ad03a7114457689ec4abde6901cc31 = L.polyline(
                [[41.9004146, -87.6505903], [41.9005836, -87.6509312], [41.9010221, -87.6517933]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_becf64c9ec3e30824f1eb5065460c4d1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b0a6e3ff4f6d9ec0bc7132d4c1a52e22 = $(`<div id=&quot;html_b0a6e3ff4f6d9ec0bc7132d4c1a52e22&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6776130135 → 5778508827 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1125567637&quot; target=&quot;_blank&quot;>1125567637</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>120.31827876977181</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_becf64c9ec3e30824f1eb5065460c4d1.setContent(html_b0a6e3ff4f6d9ec0bc7132d4c1a52e22);
            
        

        poly_line_58ad03a7114457689ec4abde6901cc31.bindPopup(popup_becf64c9ec3e30824f1eb5065460c4d1)
        ;

        
    
    
            var poly_line_4e8568cd8338414dde31d9c24134ba95 = L.polyline(
                [[41.902463, -87.6545828], [41.9025431, -87.654648]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_35ce2768201a594b5ea9e533b5748a49 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9bb74e3dafbfe70e0f74f9b1c9778ef2 = $(`<div id=&quot;html_9bb74e3dafbfe70e0f74f9b1c9778ef2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6776163347 → 5493314490 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273623183&quot; target=&quot;_blank&quot;>273623183</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>10.41376252921904</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_35ce2768201a594b5ea9e533b5748a49.setContent(html_9bb74e3dafbfe70e0f74f9b1c9778ef2);
            
        

        poly_line_4e8568cd8338414dde31d9c24134ba95.bindPopup(popup_35ce2768201a594b5ea9e533b5748a49)
        ;

        
    
    
            var poly_line_eb5c00105687bc793a385017b1f4f869 = L.polyline(
                [[41.902463, -87.6545828], [41.9024142, -87.6545435]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_02b3dcc3e42fdd30090a84045eb23b95 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0c6b71c506b9631ebef80e81b7211571 = $(`<div id=&quot;html_0c6b71c506b9631ebef80e81b7211571&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6776163347 → 12192087393 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273623183&quot; target=&quot;_blank&quot;>273623183</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>6.326425316130372</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_02b3dcc3e42fdd30090a84045eb23b95.setContent(html_0c6b71c506b9631ebef80e81b7211571);
            
        

        poly_line_eb5c00105687bc793a385017b1f4f869.bindPopup(popup_02b3dcc3e42fdd30090a84045eb23b95)
        ;

        
    
    
            var poly_line_1365eba6cc07c082468f4a681fb9c5a1 = L.polyline(
                [[41.902463, -87.6545828], [41.902501, -87.6545018], [41.9025385, -87.6544226]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_22c994737ac821f5897a73240ef2177d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_aaf544860fbd6ace11e476237e949dc6 = $(`<div id=&quot;html_aaf544860fbd6ace11e476237e949dc6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6776163347 → 6776163349 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/722397633&quot; target=&quot;_blank&quot;>722397633</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>15.692732122229518</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_22c994737ac821f5897a73240ef2177d.setContent(html_aaf544860fbd6ace11e476237e949dc6);
            
        

        poly_line_1365eba6cc07c082468f4a681fb9c5a1.bindPopup(popup_22c994737ac821f5897a73240ef2177d)
        ;

        
    
    
            var poly_line_9b693203718664e18f287e798f1a620e = L.polyline(
                [[41.9025385, -87.6544226], [41.9023183, -87.654236], [41.9021394, -87.6540844]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9ec9f875f90e7e1ae2878884c50cec31 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b3c4a800e5b6a2151585435636af10f8 = $(`<div id=&quot;html_b3c4a800e5b6a2151585435636af10f8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6776163349 → 5114880456 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/525859032&quot; target=&quot;_blank&quot;>525859032</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>52.46737759340332</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_9ec9f875f90e7e1ae2878884c50cec31.setContent(html_b3c4a800e5b6a2151585435636af10f8);
            
        

        poly_line_9b693203718664e18f287e798f1a620e.bindPopup(popup_9ec9f875f90e7e1ae2878884c50cec31)
        ;

        
    
    
            var poly_line_68522e7c5584da231c89450a0b6c0c35 = L.polyline(
                [[41.9025385, -87.6544226], [41.9028203, -87.6546514], [41.9029219, -87.6544458], [41.9022291, -87.6538852], [41.9021394, -87.6540844]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ed42ef6b5d405bf2f81e994dbdb4ea79 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4904e045c4bfdeda7da000bee050d6aa = $(`<div id=&quot;html_4904e045c4bfdeda7da000bee050d6aa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6776163349 → 5114880456 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/525859032&quot; target=&quot;_blank&quot;>525859032</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>166.23286479080917</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_ed42ef6b5d405bf2f81e994dbdb4ea79.setContent(html_4904e045c4bfdeda7da000bee050d6aa);
            
        

        poly_line_68522e7c5584da231c89450a0b6c0c35.bindPopup(popup_ed42ef6b5d405bf2f81e994dbdb4ea79)
        ;

        
    
    
            var poly_line_8c56ad1137a0b851cd11403341533285 = L.polyline(
                [[41.9025385, -87.6544226], [41.902501, -87.6545018], [41.902463, -87.6545828]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_11fade5d3a9f58a745a09c8c7426cf1a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_78e491a0ac6db01647824f540d1df65f = $(`<div id=&quot;html_78e491a0ac6db01647824f540d1df65f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6776163349 → 6776163347 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/722397633&quot; target=&quot;_blank&quot;>722397633</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>15.692732122229518</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_11fade5d3a9f58a745a09c8c7426cf1a.setContent(html_78e491a0ac6db01647824f540d1df65f);
            
        

        poly_line_8c56ad1137a0b851cd11403341533285.bindPopup(popup_11fade5d3a9f58a745a09c8c7426cf1a)
        ;

        
    
    
            var poly_line_978b07f9f50410d220528d47f9e6da2a = L.polyline(
                [[41.9045748, -87.648113], [41.9043368, -87.6481073]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6b43475a02ea34e7224157f87db26c30 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6a3f7183b94ab8f728a36995bb84de06 = $(`<div id=&quot;html_6a3f7183b94ab8f728a36995bb84de06&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6776163351 → 7079238792 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/253740820&quot; target=&quot;_blank&quot;>253740820</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>26.468633732433208</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Halsted Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_6b43475a02ea34e7224157f87db26c30.setContent(html_6a3f7183b94ab8f728a36995bb84de06);
            
        

        poly_line_978b07f9f50410d220528d47f9e6da2a.bindPopup(popup_6b43475a02ea34e7224157f87db26c30)
        ;

        
    
    
            var poly_line_aa6e29b17893faae216a86f5ae0ea93d = L.polyline(
                [[41.9045748, -87.648113], [41.9045754, -87.64822], [41.904577, -87.6484623], [41.9045722, -87.648582], [41.9045566, -87.6485994], [41.9044368, -87.6486022], [41.9043511, -87.6485601], [41.9043164, -87.648486], [41.9043306, -87.6482134], [41.9043368, -87.6481073]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2e60ac9b12cd34ab0b91de5069e6d4e3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_67e778444c9448340e30ba48fc7f25fe = $(`<div id=&quot;html_67e778444c9448340e30ba48fc7f25fe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6776163351 → 7079238792 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/758041513&quot; target=&quot;_blank&quot;>758041513</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>103.22085148008308</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_2e60ac9b12cd34ab0b91de5069e6d4e3.setContent(html_67e778444c9448340e30ba48fc7f25fe);
            
        

        poly_line_aa6e29b17893faae216a86f5ae0ea93d.bindPopup(popup_2e60ac9b12cd34ab0b91de5069e6d4e3)
        ;

        
    
    
            var poly_line_d3346637dccb1baa3d17ec9d0c1cd413 = L.polyline(
                [[41.9045748, -87.648113], [41.9049408, -87.6481218], [41.9050012, -87.6481233]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c0b793e413b3b78ca359412f842c4ca1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5df18109b5c23bc9aee252870ea2b0ff = $(`<div id=&quot;html_5df18109b5c23bc9aee252870ea2b0ff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6776163351 → 734237297 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/253740820&quot; target=&quot;_blank&quot;>253740820</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>47.42124634462624</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Halsted Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_c0b793e413b3b78ca359412f842c4ca1.setContent(html_5df18109b5c23bc9aee252870ea2b0ff);
            
        

        poly_line_d3346637dccb1baa3d17ec9d0c1cd413.bindPopup(popup_c0b793e413b3b78ca359412f842c4ca1)
        ;

        
    
    
            var poly_line_fbc5477d39a89e3db3cb4b6a61b6df5b = L.polyline(
                [[41.9104366, -87.6439591], [41.9104348, -87.6440666]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6ee8183e8b1220fd438b777da4f08fca = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d8f5a383ca85374ac89523f0c4e0f633 = $(`<div id=&quot;html_d8f5a383ca85374ac89523f0c4e0f633&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6776852110 → 12333424824 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1331397577&quot; target=&quot;_blank&quot;>1331397577</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>8.897904123734678</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_6ee8183e8b1220fd438b777da4f08fca.setContent(html_d8f5a383ca85374ac89523f0c4e0f633);
            
        

        poly_line_fbc5477d39a89e3db3cb4b6a61b6df5b.bindPopup(popup_6ee8183e8b1220fd438b777da4f08fca)
        ;

        
    
    
            var poly_line_60018d88f73187599e30ab22c1d35538 = L.polyline(
                [[41.9104366, -87.6439591], [41.9104437, -87.6435522]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3a6ddbf3ca08fe67e4625997c660d544 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_62f517d739a688bc5e15aef7955b7d35 = $(`<div id=&quot;html_62f517d739a688bc5e15aef7955b7d35&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6776852110 → 12318802029 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1331397577&quot; target=&quot;_blank&quot;>1331397577</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>33.680331827596845</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_3a6ddbf3ca08fe67e4625997c660d544.setContent(html_62f517d739a688bc5e15aef7955b7d35);
            
        

        poly_line_60018d88f73187599e30ab22c1d35538.bindPopup(popup_3a6ddbf3ca08fe67e4625997c660d544)
        ;

        
    
    
            var poly_line_93039b966f9b03e39329ddce33871c64 = L.polyline(
                [[41.9104366, -87.6439591], [41.9107327, -87.6437531], [41.910699, -87.6436518], [41.9106849, -87.6436015], [41.9106764, -87.6435297], [41.9106648, -87.6434312]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3fae20b40771917fdce8f23d46bd6a73 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_28888071caef07185e4c4a6c80b3a5c4 = $(`<div id=&quot;html_28888071caef07185e4c4a6c80b3a5c4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6776852110 → 2387195193 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/722473461&quot; target=&quot;_blank&quot;>722473461</a>, <a href=&quot;https://www.openstreetmap.org/way/722473462&quot; target=&quot;_blank&quot;>722473462</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>64.97429376937026</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_3fae20b40771917fdce8f23d46bd6a73.setContent(html_28888071caef07185e4c4a6c80b3a5c4);
            
        

        poly_line_93039b966f9b03e39329ddce33871c64.bindPopup(popup_3fae20b40771917fdce8f23d46bd6a73)
        ;

        
    
    
            var poly_line_55c556803fe0e7514bcc4a5bf7187143 = L.polyline(
                [[41.905028, -87.6458237], [41.9050111, -87.6473156]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4e2c42522506a13d8e6582d0cb82b372 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1ba03edef6ef4c59ef1174649fa43534 = $(`<div id=&quot;html_1ba03edef6ef4c59ef1174649fa43534&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6782716242 → 353799889 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59586637&quot; target=&quot;_blank&quot;>59586637</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>123.47988428219182</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Scott Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_4e2c42522506a13d8e6582d0cb82b372.setContent(html_1ba03edef6ef4c59ef1174649fa43534);
            
        

        poly_line_55c556803fe0e7514bcc4a5bf7187143.bindPopup(popup_4e2c42522506a13d8e6582d0cb82b372)
        ;

        
    
    
            var poly_line_0dc06adcad10ac1b4828c46f65638c4f = L.polyline(
                [[41.905028, -87.6458237], [41.9050337, -87.6454846]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_648cdf503171fe7686e12ffcd1f9cb22 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_31b753000f7b98d43c1c4964246dd4b4 = $(`<div id=&quot;html_31b753000f7b98d43c1c4964246dd4b4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6782716242 → 2387185294 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59586637&quot; target=&quot;_blank&quot;>59586637</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>28.070144743246285</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Scott Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_648cdf503171fe7686e12ffcd1f9cb22.setContent(html_31b753000f7b98d43c1c4964246dd4b4);
            
        

        poly_line_0dc06adcad10ac1b4828c46f65638c4f.bindPopup(popup_648cdf503171fe7686e12ffcd1f9cb22)
        ;

        
    
    
            var poly_line_50f6b1f11718414b6bc996da464c71d4 = L.polyline(
                [[41.905028, -87.6458237], [41.9050598, -87.6458244], [41.9053647, -87.6458311]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c9cf66a554414ec8f65743758b2b15b7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_520941511a08cbe8754531296bc98933 = $(`<div id=&quot;html_520941511a08cbe8754531296bc98933&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6782716242 → 6782716243 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/723131403&quot; target=&quot;_blank&quot;>723131403</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>37.444392937311264</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_c9cf66a554414ec8f65743758b2b15b7.setContent(html_520941511a08cbe8754531296bc98933);
            
        

        poly_line_50f6b1f11718414b6bc996da464c71d4.bindPopup(popup_c9cf66a554414ec8f65743758b2b15b7)
        ;

        
    
    
            var poly_line_f6094023a6ab761bf47ecb01a74c6248 = L.polyline(
                [[41.9053647, -87.6458311], [41.9050598, -87.6458244], [41.905028, -87.6458237]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_dd8b14dfdf9caf63dfad6fe0a7b24d34 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fb82a8df5d5d03aa3a36a60091822b4a = $(`<div id=&quot;html_fb82a8df5d5d03aa3a36a60091822b4a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 6782716243 → 6782716242 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/723131403&quot; target=&quot;_blank&quot;>723131403</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>37.444392937311264</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_dd8b14dfdf9caf63dfad6fe0a7b24d34.setContent(html_fb82a8df5d5d03aa3a36a60091822b4a);
            
        

        poly_line_f6094023a6ab761bf47ecb01a74c6248.bindPopup(popup_dd8b14dfdf9caf63dfad6fe0a7b24d34)
        ;

        
    
    
            var poly_line_86fa70ff386984950935181c6b77d556 = L.polyline(
                [[41.9064877, -87.6464397], [41.9064906, -87.6462184], [41.9066971, -87.6462229], [41.9067439, -87.6462274], [41.9067761, -87.6462623], [41.9067989, -87.6462812], [41.9068319, -87.6463086], [41.9069185, -87.6463148], [41.9070277, -87.6462414]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_64f5f889b03060e7694a6dc2d6e4e957 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2149b7984e431ce172b89afcedd18da6 = $(`<div id=&quot;html_2149b7984e431ce172b89afcedd18da6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7070967340 → 5828583627 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/757114243&quot; target=&quot;_blank&quot;>757114243</a>, <a href=&quot;https://www.openstreetmap.org/way/24334374&quot; target=&quot;_blank&quot;>24334374</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>['residential', 'service']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>81.61137428722327</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Ogden Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr>             </table>         </div>         </div>`)[0];
                popup_64f5f889b03060e7694a6dc2d6e4e957.setContent(html_2149b7984e431ce172b89afcedd18da6);
            
        

        poly_line_86fa70ff386984950935181c6b77d556.bindPopup(popup_64f5f889b03060e7694a6dc2d6e4e957)
        ;

        
    
    
            var poly_line_7fddc7d76b6a9a82ac74f9417ba30c81 = L.polyline(
                [[41.9043368, -87.6481073], [41.9045748, -87.648113]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c6d0e6b49d05f4df0fb2fae23f99d807 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_cb070ca95c30bb4c63635221d50541d6 = $(`<div id=&quot;html_cb070ca95c30bb4c63635221d50541d6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7079238792 → 6776163351 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/253740820&quot; target=&quot;_blank&quot;>253740820</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>26.468633732433208</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Halsted Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_c6d0e6b49d05f4df0fb2fae23f99d807.setContent(html_cb070ca95c30bb4c63635221d50541d6);
            
        

        poly_line_7fddc7d76b6a9a82ac74f9417ba30c81.bindPopup(popup_c6d0e6b49d05f4df0fb2fae23f99d807)
        ;

        
    
    
            var poly_line_5a0ed2a98afe6502f03a79fa436c132d = L.polyline(
                [[41.9043368, -87.6481073], [41.9043306, -87.6482134], [41.9043164, -87.648486], [41.9043511, -87.6485601], [41.9044368, -87.6486022], [41.9045566, -87.6485994], [41.9045722, -87.648582], [41.904577, -87.6484623], [41.9045754, -87.64822], [41.9045748, -87.648113]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9f27bcd3f315cf391298e7eeea6a97b6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2a619dcd55745ccbf0e03154ba0fdb18 = $(`<div id=&quot;html_2a619dcd55745ccbf0e03154ba0fdb18&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7079238792 → 6776163351 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/758041513&quot; target=&quot;_blank&quot;>758041513</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>103.22085148008307</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_9f27bcd3f315cf391298e7eeea6a97b6.setContent(html_2a619dcd55745ccbf0e03154ba0fdb18);
            
        

        poly_line_5a0ed2a98afe6502f03a79fa436c132d.bindPopup(popup_9f27bcd3f315cf391298e7eeea6a97b6)
        ;

        
    
    
            var poly_line_33d7539d1b56326c939bb1cb2976a1d6 = L.polyline(
                [[41.9043368, -87.6481073], [41.9039517, -87.648098], [41.9039367, -87.6480976], [41.903766, -87.6480938], [41.9037328, -87.6480898], [41.9036431, -87.6480864]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d43f0489cee34155e1f2ab81a101814a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6e2571ac333573445227fb8cb6dbc64f = $(`<div id=&quot;html_6e2571ac333573445227fb8cb6dbc64f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7079238792 → 102713547 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435397266&quot; target=&quot;_blank&quot;>435397266</a>, <a href=&quot;https://www.openstreetmap.org/way/253740820&quot; target=&quot;_blank&quot;>253740820</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>['3', '2']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>77.16465989010216</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Halsted Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_d43f0489cee34155e1f2ab81a101814a.setContent(html_6e2571ac333573445227fb8cb6dbc64f);
            
        

        poly_line_33d7539d1b56326c939bb1cb2976a1d6.bindPopup(popup_d43f0489cee34155e1f2ab81a101814a)
        ;

        
    
    
            var poly_line_8dbc50911dc5fe4ff47b3cd0bc3ab6b7 = L.polyline(
                [[41.8986432, -87.6538137], [41.8985874, -87.653523]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#3cb44b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#3cb44b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9c246facb7c967127aed6848ad5f461a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5486825f789b6675792233a2b2e83778 = $(`<div id=&quot;html_5486825f789b6675792233a2b2e83778&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7085584932 → 12187268621 (key 0)<br>                 <b>Component</b> 1<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316821472&quot; target=&quot;_blank&quot;>1316821472</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>24.847122706941736</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_9c246facb7c967127aed6848ad5f461a.setContent(html_5486825f789b6675792233a2b2e83778);
            
        

        poly_line_8dbc50911dc5fe4ff47b3cd0bc3ab6b7.bindPopup(popup_9c246facb7c967127aed6848ad5f461a)
        ;

        
    
    
            var poly_line_65a69d13f3d6d0ce5664f40f75a87830 = L.polyline(
                [[41.8986432, -87.6538137], [41.8988048, -87.6537474], [41.8990366, -87.6536553]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#3cb44b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#3cb44b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1a902afcbb9dad2188c3b95d9d53d3a5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2e22c65ff1420341e90670cc3ed67853 = $(`<div id=&quot;html_2e22c65ff1420341e90670cc3ed67853&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7085584932 → 7085584933 (key 0)<br>                 <b>Component</b> 1<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/758646035&quot; target=&quot;_blank&quot;>758646035</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>45.666863654370474</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_1a902afcbb9dad2188c3b95d9d53d3a5.setContent(html_2e22c65ff1420341e90670cc3ed67853);
            
        

        poly_line_65a69d13f3d6d0ce5664f40f75a87830.bindPopup(popup_1a902afcbb9dad2188c3b95d9d53d3a5)
        ;

        
    
    
            var poly_line_a578dc37eb7b26814c292b44e9aacc96 = L.polyline(
                [[41.8990366, -87.6536553], [41.898977, -87.6533808]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#3cb44b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#3cb44b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ba40067fd815725fddd56d58cf4fe976 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_945bcdae07a072c84c38753936b94651 = $(`<div id=&quot;html_945bcdae07a072c84c38753936b94651&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7085584933 → 12187268622 (key 0)<br>                 <b>Component</b> 1<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/758646037&quot; target=&quot;_blank&quot;>758646037</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>23.665875331838603</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_ba40067fd815725fddd56d58cf4fe976.setContent(html_945bcdae07a072c84c38753936b94651);
            
        

        poly_line_a578dc37eb7b26814c292b44e9aacc96.bindPopup(popup_ba40067fd815725fddd56d58cf4fe976)
        ;

        
    
    
            var poly_line_b3d58957c8f70f020912b5053d81b30e = L.polyline(
                [[41.8990366, -87.6536553], [41.8992874, -87.6535556], [41.8993774, -87.653521]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#3cb44b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#3cb44b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d229b149548bef4501865819785e6655 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_058dd43bdf84ab01a42f53ea3736898a = $(`<div id=&quot;html_058dd43bdf84ab01a42f53ea3736898a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7085584933 → 7085584935 (key 0)<br>                 <b>Component</b> 1<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/758646036&quot; target=&quot;_blank&quot;>758646036</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>39.492115807456955</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_d229b149548bef4501865819785e6655.setContent(html_058dd43bdf84ab01a42f53ea3736898a);
            
        

        poly_line_b3d58957c8f70f020912b5053d81b30e.bindPopup(popup_d229b149548bef4501865819785e6655)
        ;

        
    
    
            var poly_line_bed08d8f36302926b57b0a388e1db816 = L.polyline(
                [[41.8989157, -87.6531042], [41.8992591, -87.6529729]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#3cb44b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#3cb44b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_663418ab36e67ed52c3be089c504f5da = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a682bb566e6e2964fe61669a63334ae5 = $(`<div id=&quot;html_a682bb566e6e2964fe61669a63334ae5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7085584934 → 5463076777 (key 0)<br>                 <b>Component</b> 1<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316821472&quot; target=&quot;_blank&quot;>1316821472</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>39.700633959281454</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_663418ab36e67ed52c3be089c504f5da.setContent(html_a682bb566e6e2964fe61669a63334ae5);
            
        

        poly_line_bed08d8f36302926b57b0a388e1db816.bindPopup(popup_663418ab36e67ed52c3be089c504f5da)
        ;

        
    
    
            var poly_line_b5f4d0428e6e98e0a0f5718f17381c81 = L.polyline(
                [[41.8989157, -87.6531042], [41.8986422, -87.6532086], [41.8986115, -87.6532203], [41.8985634, -87.6532539], [41.8985488, -87.6533221], [41.8985874, -87.653523]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#3cb44b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#3cb44b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_313e51afbcc1cbfc14897027835ed363 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_13c133ec8009d9b3222055b657e874ad = $(`<div id=&quot;html_13c133ec8009d9b3222055b657e874ad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7085584934 → 12187268621 (key 0)<br>                 <b>Component</b> 1<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316821472&quot; target=&quot;_blank&quot;>1316821472</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>64.23826888382754</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_313e51afbcc1cbfc14897027835ed363.setContent(html_13c133ec8009d9b3222055b657e874ad);
            
        

        poly_line_b5f4d0428e6e98e0a0f5718f17381c81.bindPopup(popup_313e51afbcc1cbfc14897027835ed363)
        ;

        
    
    
            var poly_line_4132b753fee163d457bea8ce9ea69191 = L.polyline(
                [[41.8993774, -87.653521], [41.8992874, -87.6535556], [41.8990366, -87.6536553]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#3cb44b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#3cb44b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_aafc4bf222f5d0112b7ef17e547c3189 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7357421bc6fa7284a71df01b0ccffb47 = $(`<div id=&quot;html_7357421bc6fa7284a71df01b0ccffb47&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7085584935 → 7085584933 (key 0)<br>                 <b>Component</b> 1<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/758646036&quot; target=&quot;_blank&quot;>758646036</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>39.492115807456955</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_aafc4bf222f5d0112b7ef17e547c3189.setContent(html_7357421bc6fa7284a71df01b0ccffb47);
            
        

        poly_line_4132b753fee163d457bea8ce9ea69191.bindPopup(popup_aafc4bf222f5d0112b7ef17e547c3189)
        ;

        
    
    
            var poly_line_e2dbce1142d8f47f7a5c91a221bbcacd = L.polyline(
                [[41.9074643, -87.6512728], [41.907156, -87.651015], [41.9071054, -87.6509745]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8195d657e219903474b39066e78e9b8e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2c973dd9a32d0bf4d9869a48b6596f7f = $(`<div id=&quot;html_2c973dd9a32d0bf4d9869a48b6596f7f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7155039937 → 734238221 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273622070&quot; target=&quot;_blank&quot;>273622070</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>46.926766810233815</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_8195d657e219903474b39066e78e9b8e.setContent(html_2c973dd9a32d0bf4d9869a48b6596f7f);
            
        

        poly_line_e2dbce1142d8f47f7a5c91a221bbcacd.bindPopup(popup_8195d657e219903474b39066e78e9b8e)
        ;

        
    
    
            var poly_line_83f3bcb4e1442b4fc7d644283ec045d9 = L.polyline(
                [[41.9074643, -87.6512728], [41.9080772, -87.6517854], [41.9081119, -87.6518143], [41.9081676, -87.6518609]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1569d2f1bb5c4be8226236846512248c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_85c24890472b9e85606565cbc4b3085d = $(`<div id=&quot;html_85c24890472b9e85606565cbc4b3085d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7155039937 → 734236939 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273622070&quot; target=&quot;_blank&quot;>273622070</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>92.11030001586266</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_1569d2f1bb5c4be8226236846512248c.setContent(html_85c24890472b9e85606565cbc4b3085d);
            
        

        poly_line_83f3bcb4e1442b4fc7d644283ec045d9.bindPopup(popup_1569d2f1bb5c4be8226236846512248c)
        ;

        
    
    
            var poly_line_b2fd96d9149bc2a65521de060f47902d = L.polyline(
                [[41.9074643, -87.6512728], [41.9075121, -87.651176], [41.9077852, -87.6506435], [41.9078014, -87.6504231]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0e2b5195f3de56044f13e4586893a225 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_69469822abe02a77530386f97103c29f = $(`<div id=&quot;html_69469822abe02a77530386f97103c29f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7155039937 → 5817722309 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/766100811&quot; target=&quot;_blank&quot;>766100811</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>81.45781097343502</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_0e2b5195f3de56044f13e4586893a225.setContent(html_69469822abe02a77530386f97103c29f);
            
        

        poly_line_b2fd96d9149bc2a65521de060f47902d.bindPopup(popup_0e2b5195f3de56044f13e4586893a225)
        ;

        
    
    
            var poly_line_c5ec293fbe5a4c5e92939fc60b62c886 = L.polyline(
                [[41.9015133, -87.6522033], [41.901703, -87.6518313]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_41e09de8bc41172f81d75d3a994adc66 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ae5cec174e51cb041ed8086978e06da4 = $(`<div id=&quot;html_ae5cec174e51cb041ed8086978e06da4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7165417931 → 6572477137 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/680546823&quot; target=&quot;_blank&quot;>680546823</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>37.320310390923474</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_41e09de8bc41172f81d75d3a994adc66.setContent(html_ae5cec174e51cb041ed8086978e06da4);
            
        

        poly_line_c5ec293fbe5a4c5e92939fc60b62c886.bindPopup(popup_41e09de8bc41172f81d75d3a994adc66)
        ;

        
    
    
            var poly_line_c99c378105dc0b5da792cc8d8efd00ea = L.polyline(
                [[41.9015133, -87.6522033], [41.9014793, -87.652269], [41.9014349, -87.6523605]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a7848267a9d0594f170edd93632ca585 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a3a723e4e0402be3ccbe2a67186be4a3 = $(`<div id=&quot;html_a3a723e4e0402be3ccbe2a67186be4a3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7165417931 → 734235574 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/767436171&quot; target=&quot;_blank&quot;>767436171</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>15.662561930732071</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_a7848267a9d0594f170edd93632ca585.setContent(html_a3a723e4e0402be3ccbe2a67186be4a3);
            
        

        poly_line_c99c378105dc0b5da792cc8d8efd00ea.bindPopup(popup_a7848267a9d0594f170edd93632ca585)
        ;

        
    
    
            var poly_line_0e94ae3fe71e5035a64c54a2fc15be72 = L.polyline(
                [[41.901561, -87.6517251], [41.9014058, -87.651609]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0ea450b2615b4d07bdbf24eae02c7690 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_dbb707cef6365fb1e4a76e156c59be4d = $(`<div id=&quot;html_dbb707cef6365fb1e4a76e156c59be4d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7165417932 → 6776130125 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/722396438&quot; target=&quot;_blank&quot;>722396438</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.75213175979376</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_0ea450b2615b4d07bdbf24eae02c7690.setContent(html_dbb707cef6365fb1e4a76e156c59be4d);
            
        

        poly_line_0e94ae3fe71e5035a64c54a2fc15be72.bindPopup(popup_0ea450b2615b4d07bdbf24eae02c7690)
        ;

        
    
    
            var poly_line_fbad63b863cd70a24f92d82d8d23d663 = L.polyline(
                [[41.901561, -87.6517251], [41.901703, -87.6518313]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e8e02c14c7485013168acb69883ef178 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9e492fd23bb6f2541908bb41e39d0b87 = $(`<div id=&quot;html_9e492fd23bb6f2541908bb41e39d0b87&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7165417932 → 6572477137 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/722396438&quot; target=&quot;_blank&quot;>722396438</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.071145289993833</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_e8e02c14c7485013168acb69883ef178.setContent(html_9e492fd23bb6f2541908bb41e39d0b87);
            
        

        poly_line_fbad63b863cd70a24f92d82d8d23d663.bindPopup(popup_e8e02c14c7485013168acb69883ef178)
        ;

        
    
    
            var poly_line_caab1cf731a7500f0f4d22c600a38076 = L.polyline(
                [[41.901561, -87.6517251], [41.9014087, -87.6520372], [41.9013973, -87.6520786]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_22d244fc354e1e020b92bf3631c717f4 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_44a36a147de92d2860f5a7a106aa89c2 = $(`<div id=&quot;html_44a36a147de92d2860f5a7a106aa89c2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7165417932 → 7165417934 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/767436173&quot; target=&quot;_blank&quot;>767436173</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>34.53991920754368</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_22d244fc354e1e020b92bf3631c717f4.setContent(html_44a36a147de92d2860f5a7a106aa89c2);
            
        

        poly_line_caab1cf731a7500f0f4d22c600a38076.bindPopup(popup_22d244fc354e1e020b92bf3631c717f4)
        ;

        
    
    
            var poly_line_71f823ccbc408a5704dba83374cce845 = L.polyline(
                [[41.9013973, -87.6520786], [41.901403, -87.6521146], [41.9014443, -87.6521538], [41.9015133, -87.6522033]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_57897745fc0d2a87c3b19b235dd0161f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d17fe90e4626b64b0a0fa70d27f7f1be = $(`<div id=&quot;html_d17fe90e4626b64b0a0fa70d27f7f1be&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7165417934 → 7165417931 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/767436173&quot; target=&quot;_blank&quot;>767436173</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>17.366507506447665</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_57897745fc0d2a87c3b19b235dd0161f.setContent(html_d17fe90e4626b64b0a0fa70d27f7f1be);
            
        

        poly_line_71f823ccbc408a5704dba83374cce845.bindPopup(popup_57897745fc0d2a87c3b19b235dd0161f)
        ;

        
    
    
            var poly_line_78a1e32474d5b77dfe5e909c2260287f = L.polyline(
                [[41.9013973, -87.6520786], [41.9013428, -87.6520707], [41.9012416, -87.6519615]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_cc4da58c6031fa4aa080f65418f62779 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c6e229bda08d03efc8b6c5283476a241 = $(`<div id=&quot;html_c6e229bda08d03efc8b6c5283476a241&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7165417934 → 10198867985 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1115141181&quot; target=&quot;_blank&quot;>1115141181</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.52815593545572</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_cc4da58c6031fa4aa080f65418f62779.setContent(html_c6e229bda08d03efc8b6c5283476a241);
            
        

        poly_line_78a1e32474d5b77dfe5e909c2260287f.bindPopup(popup_cc4da58c6031fa4aa080f65418f62779)
        ;

        
    
    
            var poly_line_f67fdafdafc6e457d1bb55e2f2ec8da7 = L.polyline(
                [[41.8977168, -87.6519095], [41.8984505, -87.6519293]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7c6ae4e2dbd36bf4855493885d8984f5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7f2ec93f97fb3e3fb47696d1be4ba98b = $(`<div id=&quot;html_7f2ec93f97fb3e3fb47696d1be4ba98b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7205297968 → 734791867 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24102349&quot; target=&quot;_blank&quot;>24102349</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>81.60029025297246</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Sangamon Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_7c6ae4e2dbd36bf4855493885d8984f5.setContent(html_7f2ec93f97fb3e3fb47696d1be4ba98b);
            
        

        poly_line_f67fdafdafc6e457d1bb55e2f2ec8da7.bindPopup(popup_7c6ae4e2dbd36bf4855493885d8984f5)
        ;

        
    
    
            var poly_line_2e68627207fab2f9996f4517fa0bd2b4 = L.polyline(
                [[41.8977168, -87.6519095], [41.8976029, -87.6519389], [41.8974802, -87.6519334], [41.8974251, -87.651931]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_010c3a42d31ea41bdd8c6623918414eb = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ff1d5d2b3f048f724339d11447ff8344 = $(`<div id=&quot;html_ff1d5d2b3f048f724339d11447ff8344&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7205297968 → 261116824 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1213414739&quot; target=&quot;_blank&quot;>1213414739</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>32.67805766317436</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Sangamon Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_010c3a42d31ea41bdd8c6623918414eb.setContent(html_ff1d5d2b3f048f724339d11447ff8344);
            
        

        poly_line_2e68627207fab2f9996f4517fa0bd2b4.bindPopup(popup_010c3a42d31ea41bdd8c6623918414eb)
        ;

        
    
    
            var poly_line_fd7db3b5f1f389028be6124dbb8f10dd = L.polyline(
                [[41.9075748, -87.6518943], [41.9074207, -87.6522235]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#bfef45&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#bfef45&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3f47516384235cc377c66573bd414017 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1d30b18776ab2f2327e67cbe666401b4 = $(`<div id=&quot;html_1d30b18776ab2f2327e67cbe666401b4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7222200881 → 6774834574 (key 0)<br>                 <b>Component</b> 7<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/773741076&quot; target=&quot;_blank&quot;>773741076</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>access</td><td style='padding:2px 6px;'>customers</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>32.183460822683415</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_3f47516384235cc377c66573bd414017.setContent(html_1d30b18776ab2f2327e67cbe666401b4);
            
        

        poly_line_fd7db3b5f1f389028be6124dbb8f10dd.bindPopup(popup_3f47516384235cc377c66573bd414017)
        ;

        
    
    
            var poly_line_7fce6a7f5a24d156935f44a7aa5b2fb7 = L.polyline(
                [[41.9055685, -87.6596541], [41.9053784, -87.6596202]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ec6566c94dee0c071ee7969d33e60956 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e028c975dd1e527c4447a7c016adcc44 = $(`<div id=&quot;html_e028c975dd1e527c4447a7c016adcc44&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7505359088 → 2565051779 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/221317663&quot; target=&quot;_blank&quot;>221317663</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>3</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.323541978447274</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_ec6566c94dee0c071ee7969d33e60956.setContent(html_e028c975dd1e527c4447a7c016adcc44);
            
        

        poly_line_7fce6a7f5a24d156935f44a7aa5b2fb7.bindPopup(popup_ec6566c94dee0c071ee7969d33e60956)
        ;

        
    
    
            var poly_line_61a18334ea3e28de2a05d173587cada3 = L.polyline(
                [[41.9055685, -87.6596541], [41.9056367, -87.6596675]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_05e08d03f22d15ed23ae8221c994bc62 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6b1849721720e2d3a61f9eebd7141c08 = $(`<div id=&quot;html_6b1849721720e2d3a61f9eebd7141c08&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7505359088 → 12187280008 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/221317663&quot; target=&quot;_blank&quot;>221317663</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>3</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.664155912785325</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_05e08d03f22d15ed23ae8221c994bc62.setContent(html_6b1849721720e2d3a61f9eebd7141c08);
            
        

        poly_line_61a18334ea3e28de2a05d173587cada3.bindPopup(popup_05e08d03f22d15ed23ae8221c994bc62)
        ;

        
    
    
            var poly_line_1885f4831ececfd1e4a06061a85adc93 = L.polyline(
                [[41.9055685, -87.6596541], [41.9055644, -87.6597211]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6333f42269f9fea65f674ea82d13ec13 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7ed801a7a4a9633a833b763127462d07 = $(`<div id=&quot;html_7ed801a7a4a9633a833b763127462d07&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7505359088 → 12187279998 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/802366681&quot; target=&quot;_blank&quot;>802366681</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>5.563401279287485</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_6333f42269f9fea65f674ea82d13ec13.setContent(html_7ed801a7a4a9633a833b763127462d07);
            
        

        poly_line_1885f4831ececfd1e4a06061a85adc93.bindPopup(popup_6333f42269f9fea65f674ea82d13ec13)
        ;

        
    
    
            var poly_line_e118e69207b75ad14c2d77ad333795d2 = L.polyline(
                [[41.9055498, -87.6602011], [41.9055598, -87.6598129], [41.9055605, -87.6597864], [41.9055625, -87.6597522], [41.9055644, -87.6597211]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_30eae13b4d525d55ff2ed8ab06751901 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0671e881cc6aee29ea82b9a5c0ba1c78 = $(`<div id=&quot;html_0671e881cc6aee29ea82b9a5c0ba1c78&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7505359090 → 12187279998 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/802366681&quot; target=&quot;_blank&quot;>802366681</a>, <a href=&quot;https://www.openstreetmap.org/way/802366682&quot; target=&quot;_blank&quot;>802366682</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>39.76115899920537</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_30eae13b4d525d55ff2ed8ab06751901.setContent(html_0671e881cc6aee29ea82b9a5c0ba1c78);
            
        

        poly_line_e118e69207b75ad14c2d77ad333795d2.bindPopup(popup_30eae13b4d525d55ff2ed8ab06751901)
        ;

        
    
    
            var poly_line_9205b0f16e01784e8289e5b2acdeceb0 = L.polyline(
                [[41.9072353, -87.6607456], [41.9070789, -87.6607078], [41.9070138, -87.6606795], [41.9070035, -87.6606618], [41.9069998, -87.6606346], [41.9070173, -87.6605283], [41.9070346, -87.6604335], [41.9070976, -87.6601817], [41.9071213, -87.6600818], [41.9071388, -87.6599435]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4454bfadf31eb558ce8b9229b6691dc8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4e7137203e9a2143c049fe53d6db962b = $(`<div id=&quot;html_4e7137203e9a2143c049fe53d6db962b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7505359100 → 734123164 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/802366685&quot; target=&quot;_blank&quot;>802366685</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>88.78272242587896</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_4454bfadf31eb558ce8b9229b6691dc8.setContent(html_4e7137203e9a2143c049fe53d6db962b);
            
        

        poly_line_9205b0f16e01784e8289e5b2acdeceb0.bindPopup(popup_4454bfadf31eb558ce8b9229b6691dc8)
        ;

        
    
    
            var poly_line_543e0ea0a36a448d3f9385f1cc6b9577 = L.polyline(
                [[41.9071281, -87.6587738], [41.9071166, -87.6595121]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_13b1a69f106f7deeb93bf0c90d4f6c9d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4593d878c269f482a53460ab89feb20f = $(`<div id=&quot;html_4593d878c269f482a53460ab89feb20f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7505359102 → 12195806859 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24085264&quot; target=&quot;_blank&quot;>24085264</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>61.11106670389078</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Blackhawk Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_13b1a69f106f7deeb93bf0c90d4f6c9d.setContent(html_4593d878c269f482a53460ab89feb20f);
            
        

        poly_line_543e0ea0a36a448d3f9385f1cc6b9577.bindPopup(popup_13b1a69f106f7deeb93bf0c90d4f6c9d)
        ;

        
    
    
            var poly_line_65880c456f715a0a81ee9d85e7287caf = L.polyline(
                [[41.9071281, -87.6587738], [41.9071324, -87.6585096]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_15aa939c0eaf480dc26ccb66e95cf847 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ac2c0f00370fcdcbda7262b4d5a9d1b9 = $(`<div id=&quot;html_ac2c0f00370fcdcbda7262b4d5a9d1b9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7505359102 → 261193494 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24085264&quot; target=&quot;_blank&quot;>24085264</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.868977775143325</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Blackhawk Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_15aa939c0eaf480dc26ccb66e95cf847.setContent(html_ac2c0f00370fcdcbda7262b4d5a9d1b9);
            
        

        poly_line_65880c456f715a0a81ee9d85e7287caf.bindPopup(popup_15aa939c0eaf480dc26ccb66e95cf847)
        ;

        
    
    
            var poly_line_487e0107637fcf6142c202094396cf5f = L.polyline(
                [[41.9071281, -87.6587738], [41.9070501, -87.6587681], [41.9070329, -87.6587683]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_890478f89b1d73db2e10de3228c99208 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9d77389b031422b54553cfd4444268b6 = $(`<div id=&quot;html_9d77389b031422b54553cfd4444268b6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7505359102 → 7505359103 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/802366686&quot; target=&quot;_blank&quot;>802366686</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>10.598661074648358</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_890478f89b1d73db2e10de3228c99208.setContent(html_9d77389b031422b54553cfd4444268b6);
            
        

        poly_line_487e0107637fcf6142c202094396cf5f.bindPopup(popup_890478f89b1d73db2e10de3228c99208)
        ;

        
    
    
            var poly_line_b5f94c9f0fbe233880c5b3b4f85be234 = L.polyline(
                [[41.9070329, -87.6587683], [41.9070501, -87.6587681], [41.9071281, -87.6587738]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_46a8b88f4b2b86b8f526cd1e38169eaf = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0d8fd2a94e9b2ae4994cac8e65143fd9 = $(`<div id=&quot;html_0d8fd2a94e9b2ae4994cac8e65143fd9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7505359103 → 7505359102 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/802366686&quot; target=&quot;_blank&quot;>802366686</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>10.598661074648358</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_46a8b88f4b2b86b8f526cd1e38169eaf.setContent(html_0d8fd2a94e9b2ae4994cac8e65143fd9);
            
        

        poly_line_b5f94c9f0fbe233880c5b3b4f85be234.bindPopup(popup_46a8b88f4b2b86b8f526cd1e38169eaf)
        ;

        
    
    
            var poly_line_e24bf9b2238e0661b3649ccbf290277d = L.polyline(
                [[41.9081016, -87.6542629], [41.9076532, -87.6552664]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_553c391b1d520e326491aa2eeab980fd = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3b2ea92da7c854a9a61dee7b196bc5af = $(`<div id=&quot;html_3b2ea92da7c854a9a61dee7b196bc5af&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7505809081 → 5493314406 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/802413166&quot; target=&quot;_blank&quot;>802413166</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>96.8616652817952</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_553c391b1d520e326491aa2eeab980fd.setContent(html_3b2ea92da7c854a9a61dee7b196bc5af);
            
        

        poly_line_e24bf9b2238e0661b3649ccbf290277d.bindPopup(popup_553c391b1d520e326491aa2eeab980fd)
        ;

        
    
    
            var poly_line_b4a48e3bdf368f3a2b7487d28a95a6cd = L.polyline(
                [[41.9081016, -87.6542629], [41.9082438, -87.6543761]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6a8338c39bb8aece2577aa318f39a83a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8851f361a44d338b327c84972dc424b4 = $(`<div id=&quot;html_8851f361a44d338b327c84972dc424b4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7505809081 → 5493314424 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1307412677&quot; target=&quot;_blank&quot;>1307412677</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.37853511044234</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_6a8338c39bb8aece2577aa318f39a83a.setContent(html_8851f361a44d338b327c84972dc424b4);
            
        

        poly_line_b4a48e3bdf368f3a2b7487d28a95a6cd.bindPopup(popup_6a8338c39bb8aece2577aa318f39a83a)
        ;

        
    
    
            var poly_line_7ae21de56f52f79e947fc587d06ad8c9 = L.polyline(
                [[41.9081016, -87.6542629], [41.9079822, -87.654152], [41.9074888, -87.6551913], [41.9074914, -87.6552586], [41.9076213, -87.6552641]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7676793d84ebab3af14c01e38b9587d9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4c8eeafbef4ca3b369cd988a548903c4 = $(`<div id=&quot;html_4c8eeafbef4ca3b369cd988a548903c4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7505809081 → 5493314398 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626329&quot; target=&quot;_blank&quot;>571626329</a>, <a href=&quot;https://www.openstreetmap.org/way/1307412677&quot; target=&quot;_blank&quot;>1307412677</a>, <a href=&quot;https://www.openstreetmap.org/way/802413167&quot; target=&quot;_blank&quot;>802413167</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>138.1830406241843</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_7676793d84ebab3af14c01e38b9587d9.setContent(html_4c8eeafbef4ca3b369cd988a548903c4);
            
        

        poly_line_7ae21de56f52f79e947fc587d06ad8c9.bindPopup(popup_7676793d84ebab3af14c01e38b9587d9)
        ;

        
    
    
            var poly_line_aa351476339d0ed6f8547d13a5045520 = L.polyline(
                [[41.9077121, -87.6542932], [41.9075744, -87.6541799]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f2b84b376c927bc71d95f73aae4b5e2a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f77d68325d88fc3bfe94f666640e6718 = $(`<div id=&quot;html_f77d68325d88fc3bfe94f666640e6718&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7505818087 → 12107616294 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/802413164&quot; target=&quot;_blank&quot;>802413164</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>17.954208626477083</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_f2b84b376c927bc71d95f73aae4b5e2a.setContent(html_f77d68325d88fc3bfe94f666640e6718);
            
        

        poly_line_aa351476339d0ed6f8547d13a5045520.bindPopup(popup_f2b84b376c927bc71d95f73aae4b5e2a)
        ;

        
    
    
            var poly_line_16d11a47958f6f1486d79058955bbf1d = L.polyline(
                [[41.9077121, -87.6542932], [41.9075664, -87.6546111]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_34d01218245b955f5af6e60efa9195bf = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_bde16a22590861626cbf3ad08c997877 = $(`<div id=&quot;html_bde16a22590861626cbf3ad08c997877&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7505818087 → 5493314410 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/802413165&quot; target=&quot;_blank&quot;>802413165</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>30.89593546145658</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_34d01218245b955f5af6e60efa9195bf.setContent(html_bde16a22590861626cbf3ad08c997877);
            
        

        poly_line_16d11a47958f6f1486d79058955bbf1d.bindPopup(popup_34d01218245b955f5af6e60efa9195bf)
        ;

        
    
    
            var poly_line_17f61607ba9d78b5aeb0b8f63fc2b381 = L.polyline(
                [[41.9077121, -87.6542932], [41.9078036, -87.6540848], [41.9076646, -87.6539818]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_efad116fd6c708eb540e5022b3948439 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b079610b6f9b9cdd1ea876ce49df5533 = $(`<div id=&quot;html_b079610b6f9b9cdd1ea876ce49df5533&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7505818087 → 12107616295 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/802413168&quot; target=&quot;_blank&quot;>802413168</a>, <a href=&quot;https://www.openstreetmap.org/way/802413164&quot; target=&quot;_blank&quot;>802413164</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>37.67403546830853</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_efad116fd6c708eb540e5022b3948439.setContent(html_b079610b6f9b9cdd1ea876ce49df5533);
            
        

        poly_line_17f61607ba9d78b5aeb0b8f63fc2b381.bindPopup(popup_efad116fd6c708eb540e5022b3948439)
        ;

        
    
    
            var poly_line_cd5cf192bc04d7cfa98ed7acaaab0c2a = L.polyline(
                [[41.9013695, -87.6605504], [41.9014874, -87.6604215], [41.9018393, -87.6604461], [41.9021293, -87.6604663], [41.9022318, -87.6604364], [41.902249, -87.6603784]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b7dbd9d7ecc1fd79234f54a008d02add = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0e7fb5841b3008dd26a0792f6d0cdbaf = $(`<div id=&quot;html_0e7fb5841b3008dd26a0792f6d0cdbaf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7506296587 → 7506296591 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/802465285&quot; target=&quot;_blank&quot;>802465285</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>access</td><td style='padding:2px 6px;'>destination</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>emergency_bay</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>105.20446497484083</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_b7dbd9d7ecc1fd79234f54a008d02add.setContent(html_0e7fb5841b3008dd26a0792f6d0cdbaf);
            
        

        poly_line_cd5cf192bc04d7cfa98ed7acaaab0c2a.bindPopup(popup_b7dbd9d7ecc1fd79234f54a008d02add)
        ;

        
    
    
            var poly_line_ccc0ecb85f45553f73f5b3500f5d49f3 = L.polyline(
                [[41.902249, -87.6603784], [41.9022823, -87.6603928]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f5de1309559580f63b27aafbe6dada99 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1f5d9c8b49f45f4308290afd4d24bfcd = $(`<div id=&quot;html_1f5d9c8b49f45f4308290afd4d24bfcd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7506296591 → 13620069010 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24116131&quot; target=&quot;_blank&quot;>24116131</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>3.889856453066394</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Throop Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_f5de1309559580f63b27aafbe6dada99.setContent(html_1f5d9c8b49f45f4308290afd4d24bfcd);
            
        

        poly_line_ccc0ecb85f45553f73f5b3500f5d49f3.bindPopup(popup_f5de1309559580f63b27aafbe6dada99)
        ;

        
    
    
            var poly_line_a0de056110066f6dbf00f5c7cb103a68 = L.polyline(
                [[41.9077867, -87.6494227], [41.9084803, -87.6494415], [41.9085599, -87.6494436]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d18190abfd7b588d89744590eecdf96a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_50b95d172e0f430a1d4dce632993022d = $(`<div id=&quot;html_50b95d172e0f430a1d4dce632993022d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7536224405 → 261193487 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24103945&quot; target=&quot;_blank&quot;>24103945</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>85.99343433561073</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Dayton Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_d18190abfd7b588d89744590eecdf96a.setContent(html_50b95d172e0f430a1d4dce632993022d);
            
        

        poly_line_a0de056110066f6dbf00f5c7cb103a68.bindPopup(popup_d18190abfd7b588d89744590eecdf96a)
        ;

        
    
    
            var poly_line_3fefba1218a694c4e7f430da2ab3fca7 = L.polyline(
                [[41.9077867, -87.6494227], [41.9075407, -87.649416], [41.9074541, -87.6494137]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_967db28ba16fc5f20fd94ee054cb0876 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_81d96f3b4a8229492a8b999e7379cb27 = $(`<div id=&quot;html_81d96f3b4a8229492a8b999e7379cb27&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7536224405 → 261162243 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24103945&quot; target=&quot;_blank&quot;>24103945</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>36.99098434963186</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Dayton Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_967db28ba16fc5f20fd94ee054cb0876.setContent(html_81d96f3b4a8229492a8b999e7379cb27);
            
        

        poly_line_3fefba1218a694c4e7f430da2ab3fca7.bindPopup(popup_967db28ba16fc5f20fd94ee054cb0876)
        ;

        
    
    
            var poly_line_240d0ce26eb8184b48eb09544eac7e1a = L.polyline(
                [[41.9077867, -87.6494227], [41.9077882, -87.6495253], [41.9077938, -87.649904], [41.9077954, -87.6500026], [41.9078039, -87.6503661], [41.9078014, -87.6504231]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2e89fb0625655cd4777856bf2e2f56cd = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e3d964a1d398d4f876f4ceef35ff5c56 = $(`<div id=&quot;html_e3d964a1d398d4f876f4ceef35ff5c56&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7536224405 → 5817722309 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/805893848&quot; target=&quot;_blank&quot;>805893848</a>, <a href=&quot;https://www.openstreetmap.org/way/805893849&quot; target=&quot;_blank&quot;>805893849</a>, <a href=&quot;https://www.openstreetmap.org/way/805893847&quot; target=&quot;_blank&quot;>805893847</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>82.8195753270279</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_2e89fb0625655cd4777856bf2e2f56cd.setContent(html_e3d964a1d398d4f876f4ceef35ff5c56);
            
        

        poly_line_240d0ce26eb8184b48eb09544eac7e1a.bindPopup(popup_2e89fb0625655cd4777856bf2e2f56cd)
        ;

        
    
    
            var poly_line_23dda7f81700b9fb70f1e7decb7d4558 = L.polyline(
                [[41.9075861, -87.6474963], [41.9075701, -87.6474965], [41.9074826, -87.6474976]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_279bc4ebe67b8cc054785f15be0cba8b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1f3f0422850ffa95aa5f71718b668ec9 = $(`<div id=&quot;html_1f3f0422850ffa95aa5f71718b668ec9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7649225324 → 7649225325 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/819072267&quot; target=&quot;_blank&quot;>819072267</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>11.50919397268343</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_279bc4ebe67b8cc054785f15be0cba8b.setContent(html_1f3f0422850ffa95aa5f71718b668ec9);
            
        

        poly_line_23dda7f81700b9fb70f1e7decb7d4558.bindPopup(popup_279bc4ebe67b8cc054785f15be0cba8b)
        ;

        
    
    
            var poly_line_ebc50e17c1af1c257e298d0cfb030717 = L.polyline(
                [[41.9074826, -87.6474976], [41.9074819, -87.647537]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e8208893daf395e0b2669b6d093f8f22 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_22823ce3cc49b507c2664383803ef199 = $(`<div id=&quot;html_22823ce3cc49b507c2664383803ef199&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7649225325 → 11310995662 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1024669102&quot; target=&quot;_blank&quot;>1024669102</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>3.261439950136639</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Schiller Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_e8208893daf395e0b2669b6d093f8f22.setContent(html_22823ce3cc49b507c2664383803ef199);
            
        

        poly_line_ebc50e17c1af1c257e298d0cfb030717.bindPopup(popup_e8208893daf395e0b2669b6d093f8f22)
        ;

        
    
    
            var poly_line_fdf17caa29c8a5717c1ff0f9e14c3b5f = L.polyline(
                [[41.9074826, -87.6474976], [41.9074859, -87.6473103]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8a33081cd139ce4f354565579e7064ae = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9a24c398c7c86bbe5e6a4ae7d83a0d71 = $(`<div id=&quot;html_9a24c398c7c86bbe5e6a4ae7d83a0d71&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7649225325 → 7649225327 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1024669102&quot; target=&quot;_blank&quot;>1024669102</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>15.504182813755977</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Schiller Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_8a33081cd139ce4f354565579e7064ae.setContent(html_9a24c398c7c86bbe5e6a4ae7d83a0d71);
            
        

        poly_line_fdf17caa29c8a5717c1ff0f9e14c3b5f.bindPopup(popup_8a33081cd139ce4f354565579e7064ae)
        ;

        
    
    
            var poly_line_11778c356110b68241aeeaee1f46a60d = L.polyline(
                [[41.9074859, -87.6473103], [41.9074826, -87.6474976]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c67277ebd91d4eb2069ee5869141f888 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_207e7cf0a08d2e2b1a2f1182ae9802e6 = $(`<div id=&quot;html_207e7cf0a08d2e2b1a2f1182ae9802e6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7649225327 → 7649225325 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1024669102&quot; target=&quot;_blank&quot;>1024669102</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>15.504182813755977</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Schiller Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_c67277ebd91d4eb2069ee5869141f888.setContent(html_207e7cf0a08d2e2b1a2f1182ae9802e6);
            
        

        poly_line_11778c356110b68241aeeaee1f46a60d.bindPopup(popup_c67277ebd91d4eb2069ee5869141f888)
        ;

        
    
    
            var poly_line_9286ffe7d93fb92c2c05f3b94eb017aa = L.polyline(
                [[41.9074859, -87.6473103], [41.907495, -87.6467777]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_aed3c108a5dc60c440c62de93a671d1d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_db454d0d65ed36cb2bde1e59fbeaa7eb = $(`<div id=&quot;html_db454d0d65ed36cb2bde1e59fbeaa7eb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7649225327 → 11310995656 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1024669102&quot; target=&quot;_blank&quot;>1024669102</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>44.08643461907252</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Schiller Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_aed3c108a5dc60c440c62de93a671d1d.setContent(html_db454d0d65ed36cb2bde1e59fbeaa7eb);
            
        

        poly_line_9286ffe7d93fb92c2c05f3b94eb017aa.bindPopup(popup_aed3c108a5dc60c440c62de93a671d1d)
        ;

        
    
    
            var poly_line_e1311b78f9a42e0963ef37abf8e34317 = L.polyline(
                [[41.9074859, -87.6473103], [41.9075722, -87.6473126], [41.9075882, -87.647313]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9ee518cbe68ea1bc0c9ce3b2062f180a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d147a084ad7fdb14be892ffbdbb169f1 = $(`<div id=&quot;html_d147a084ad7fdb14be892ffbdbb169f1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7649225327 → 7649225326 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/819072268&quot; target=&quot;_blank&quot;>819072268</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>11.377452379599859</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_9ee518cbe68ea1bc0c9ce3b2062f180a.setContent(html_d147a084ad7fdb14be892ffbdbb169f1);
            
        

        poly_line_e1311b78f9a42e0963ef37abf8e34317.bindPopup(popup_9ee518cbe68ea1bc0c9ce3b2062f180a)
        ;

        
    
    
            var poly_line_a048176ee349ccd1ddaa890b4b3e50c3 = L.polyline(
                [[41.8981454, -87.6583457], [41.8979841, -87.6580976]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8c731840e00242070f1db9ed86a3a9a4 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1187fc52dc9b0697895ac9da35caf744 = $(`<div id=&quot;html_1187fc52dc9b0697895ac9da35caf744&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7676191097 → 12289051314 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24229910&quot; target=&quot;_blank&quot;>24229910</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>27.26444430936512</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Milwaukee Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_8c731840e00242070f1db9ed86a3a9a4.setContent(html_1187fc52dc9b0697895ac9da35caf744);
            
        

        poly_line_a048176ee349ccd1ddaa890b4b3e50c3.bindPopup(popup_8c731840e00242070f1db9ed86a3a9a4)
        ;

        
    
    
            var poly_line_383ae41dc4f6b75d1d8c7799886a324a = L.polyline(
                [[41.8981454, -87.6583457], [41.8981089, -87.6584378]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_18c31a41086be061b710b05b79d1c3b6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1d8a94310b5274fdf8f94e6c05687c71 = $(`<div id=&quot;html_1d8a94310b5274fdf8f94e6c05687c71&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7676191097 → 12289051309 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/566479798&quot; target=&quot;_blank&quot;>566479798</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>8.635913080586812</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_18c31a41086be061b710b05b79d1c3b6.setContent(html_1d8a94310b5274fdf8f94e6c05687c71);
            
        

        poly_line_383ae41dc4f6b75d1d8c7799886a324a.bindPopup(popup_18c31a41086be061b710b05b79d1c3b6)
        ;

        
    
    
            var poly_line_5fa973933546bcfe25428f3408a1413d = L.polyline(
                [[41.8981454, -87.6583457], [41.8982113, -87.6584519], [41.898273, -87.6585514]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_62d652dce73ae84d280fd8f80b591bc1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4954e051741e571c54b9181833b67a0a = $(`<div id=&quot;html_4954e051741e571c54b9181833b67a0a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7676191097 → 261104757 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1185229287&quot; target=&quot;_blank&quot;>1185229287</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.162210015696626</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Milwaukee Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_62d652dce73ae84d280fd8f80b591bc1.setContent(html_4954e051741e571c54b9181833b67a0a);
            
        

        poly_line_5fa973933546bcfe25428f3408a1413d.bindPopup(popup_62d652dce73ae84d280fd8f80b591bc1)
        ;

        
    
    
            var poly_line_d86ee2238d86ec7ead8c27f4a1a8b439 = L.polyline(
                [[41.9038082, -87.6449127], [41.9037813, -87.6449119], [41.9036872, -87.644907]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ac4edcdd70b60e6c04fb9c4e60f103ed = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3d59c3ad1a01d2a8830244dc1d59fa57 = $(`<div id=&quot;html_3d59c3ad1a01d2a8830244dc1d59fa57&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7757124493 → 4333091844 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/830804366&quot; target=&quot;_blank&quot;>830804366</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>13.463192905007517</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_ac4edcdd70b60e6c04fb9c4e60f103ed.setContent(html_3d59c3ad1a01d2a8830244dc1d59fa57);
            
        

        poly_line_d86ee2238d86ec7ead8c27f4a1a8b439.bindPopup(popup_ac4edcdd70b60e6c04fb9c4e60f103ed)
        ;

        
    
    
            var poly_line_474ec3554739289baef4cfdf64181021 = L.polyline(
                [[41.904651, -87.6432463], [41.9048387, -87.6432523]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_499062bfb49fbf8679e64fcc64387536 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_87f8e2c3f5ff86214a2c463cc5de91f9 = $(`<div id=&quot;html_87f8e2c3f5ff86214a2c463cc5de91f9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7757124494 → 262368672 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/519888263&quot; target=&quot;_blank&quot;>519888263</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.87722299603913</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_499062bfb49fbf8679e64fcc64387536.setContent(html_87f8e2c3f5ff86214a2c463cc5de91f9);
            
        

        poly_line_474ec3554739289baef4cfdf64181021.bindPopup(popup_499062bfb49fbf8679e64fcc64387536)
        ;

        
    
    
            var poly_line_d955d078402c1a09c6c2401a5a21bbcf = L.polyline(
                [[41.904651, -87.6432463], [41.9040109, -87.6432245], [41.9038068, -87.6432175], [41.9037161, -87.6432163]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_29f22daf4eeaca9561e2a2ec1c3baabc = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c42bab7803512f01d9e0cbfd4e944a37 = $(`<div id=&quot;html_c42bab7803512f01d9e0cbfd4e944a37&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7757124494 → 344365298 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1436651323&quot; target=&quot;_blank&quot;>1436651323</a>, <a href=&quot;https://www.openstreetmap.org/way/519888263&quot; target=&quot;_blank&quot;>519888263</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>['3', '2']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>103.98702660371693</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_29f22daf4eeaca9561e2a2ec1c3baabc.setContent(html_c42bab7803512f01d9e0cbfd4e944a37);
            
        

        poly_line_d955d078402c1a09c6c2401a5a21bbcf.bindPopup(popup_29f22daf4eeaca9561e2a2ec1c3baabc)
        ;

        
    
    
            var poly_line_7424e76815c5bf241b0c7aa909ab7a73 = L.polyline(
                [[41.904651, -87.6432463], [41.9046503, -87.6433459], [41.9046492, -87.6434262]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6f9cfcad7b8a36b3626bdcb84d5ad602 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_354c04b90d31de3404c1979dd853489d = $(`<div id=&quot;html_354c04b90d31de3404c1979dd853489d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7757124494 → 7757124495 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/830804367&quot; target=&quot;_blank&quot;>830804367</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>14.889613601311897</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_6f9cfcad7b8a36b3626bdcb84d5ad602.setContent(html_354c04b90d31de3404c1979dd853489d);
            
        

        poly_line_7424e76815c5bf241b0c7aa909ab7a73.bindPopup(popup_6f9cfcad7b8a36b3626bdcb84d5ad602)
        ;

        
    
    
            var poly_line_6b2d9fbe519dedba940a514d7cf258af = L.polyline(
                [[41.9046492, -87.6434262], [41.9046503, -87.6433459], [41.904651, -87.6432463]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1592d3ca81bd9db843a7cd5ec88b8699 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_843ee9f8d8df9692341fe69fb141f38b = $(`<div id=&quot;html_843ee9f8d8df9692341fe69fb141f38b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7757124495 → 7757124494 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/830804367&quot; target=&quot;_blank&quot;>830804367</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>14.889613601311897</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_1592d3ca81bd9db843a7cd5ec88b8699.setContent(html_843ee9f8d8df9692341fe69fb141f38b);
            
        

        poly_line_6b2d9fbe519dedba940a514d7cf258af.bindPopup(popup_1592d3ca81bd9db843a7cd5ec88b8699)
        ;

        
    
    
            var poly_line_103203b47b858c968c7867ac97559993 = L.polyline(
                [[41.9009058, -87.6495241], [41.90063, -87.6501345]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_128a989f414f8219c51030627f67b1d6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6da28de34028e42c3f90a749df3cc3b2 = $(`<div id=&quot;html_6da28de34028e42c3f90a749df3cc3b2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7932870409 → 261126253 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24072656&quot; target=&quot;_blank&quot;>24072656</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>59.098319377560294</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Haines Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_128a989f414f8219c51030627f67b1d6.setContent(html_6da28de34028e42c3f90a749df3cc3b2);
            
        

        poly_line_103203b47b858c968c7867ac97559993.bindPopup(popup_128a989f414f8219c51030627f67b1d6)
        ;

        
    
    
            var poly_line_022e60b3b92368d7ffb56502629b82ce = L.polyline(
                [[41.9009058, -87.6495241], [41.901122, -87.6490455], [41.9011584, -87.648965]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0b040c650fbbe4f3558f50f780924500 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5caa37e24525fb667c7ff2bf6128b951 = $(`<div id=&quot;html_5caa37e24525fb667c7ff2bf6128b951&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7932870409 → 261126254 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24072656&quot; target=&quot;_blank&quot;>24072656</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>54.13013720743516</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Haines Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_0b040c650fbbe4f3558f50f780924500.setContent(html_5caa37e24525fb667c7ff2bf6128b951);
            
        

        poly_line_022e60b3b92368d7ffb56502629b82ce.bindPopup(popup_0b040c650fbbe4f3558f50f780924500)
        ;

        
    
    
            var poly_line_c8f8cd1a65d6b143e5ced4dabee14a82 = L.polyline(
                [[41.9009058, -87.6495241], [41.9008701, -87.6494958], [41.9008538, -87.6494821], [41.9006294, -87.6493046], [41.9004208, -87.6491225], [41.8999389, -87.648724], [41.8998858, -87.6486685], [41.8998516, -87.6486259], [41.8997827, -87.6484948], [41.899751, -87.648421], [41.8997443, -87.6483858], [41.8997436, -87.6483522], [41.899746, -87.6480229], [41.8997468, -87.6479161]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c233516031100c489adf58cbc272b6ab = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8d65940c2102b41090e9016f921a26b6 = $(`<div id=&quot;html_8d65940c2102b41090e9016f921a26b6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7932870409 → 7932870420 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/850313385&quot; target=&quot;_blank&quot;>850313385</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>201.1709680896914</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_c233516031100c489adf58cbc272b6ab.setContent(html_8d65940c2102b41090e9016f921a26b6);
            
        

        poly_line_c8f8cd1a65d6b143e5ced4dabee14a82.bindPopup(popup_c233516031100c489adf58cbc272b6ab)
        ;

        
    
    
            var poly_line_6457b89021f1c89cef9e88dd928e7602 = L.polyline(
                [[41.8997468, -87.6479161], [41.8999004, -87.6479232]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_dc5738fd8ebb72b3aacd106ce67df5ee = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_be49bcbff84efffc6d15f89bf3931805 = $(`<div id=&quot;html_be49bcbff84efffc6d15f89bf3931805&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7932870420 → 3762220112 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/242897402&quot; target=&quot;_blank&quot;>242897402</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>17.089670515586434</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Halsted Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_dc5738fd8ebb72b3aacd106ce67df5ee.setContent(html_be49bcbff84efffc6d15f89bf3931805);
            
        

        poly_line_6457b89021f1c89cef9e88dd928e7602.bindPopup(popup_dc5738fd8ebb72b3aacd106ce67df5ee)
        ;

        
    
    
            var poly_line_48c896f41ce4400f1a98f9c1fee90e37 = L.polyline(
                [[41.8997468, -87.6479161], [41.8993964, -87.6478998], [41.8991423, -87.647888], [41.8990524, -87.6478849], [41.8990528, -87.6479873], [41.8992035, -87.6482694]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_625a1d747cc05bbd9044712761a759c1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4918cbb39f9f0a001be5ca8dc52dbdd9 = $(`<div id=&quot;html_4918cbb39f9f0a001be5ca8dc52dbdd9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7932870420 → 4267128728 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24096218&quot; target=&quot;_blank&quot;>24096218</a>, <a href=&quot;https://www.openstreetmap.org/way/242897402&quot; target=&quot;_blank&quot;>242897402</a>, <a href=&quot;https://www.openstreetmap.org/way/1413080019&quot; target=&quot;_blank&quot;>1413080019</a>, <a href=&quot;https://www.openstreetmap.org/way/623095622&quot; target=&quot;_blank&quot;>623095622</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>['unclassified', 'secondary']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>114.47160830093328</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>['North North Branch Street', 'North Halsted Street']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr>             </table>         </div>         </div>`)[0];
                popup_625a1d747cc05bbd9044712761a759c1.setContent(html_4918cbb39f9f0a001be5ca8dc52dbdd9);
            
        

        poly_line_48c896f41ce4400f1a98f9c1fee90e37.bindPopup(popup_625a1d747cc05bbd9044712761a759c1)
        ;

        
    
    
            var poly_line_7b624b065579ed83b10989fc57d6dd53 = L.polyline(
                [[41.8997468, -87.6479161], [41.899746, -87.6480229], [41.8997436, -87.6483522], [41.8997443, -87.6483858], [41.899751, -87.648421], [41.8997827, -87.6484948], [41.8998516, -87.6486259], [41.8998858, -87.6486685], [41.8999389, -87.648724], [41.9004208, -87.6491225], [41.9006294, -87.6493046], [41.9008538, -87.6494821], [41.9008701, -87.6494958], [41.9009058, -87.6495241]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ed3a4a29bcce51207bbad49b6e624764 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_849c71b745e4588985a44acfc872299e = $(`<div id=&quot;html_849c71b745e4588985a44acfc872299e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7932870420 → 7932870409 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/850313385&quot; target=&quot;_blank&quot;>850313385</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>201.17096808969137</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_ed3a4a29bcce51207bbad49b6e624764.setContent(html_849c71b745e4588985a44acfc872299e);
            
        

        poly_line_7b624b065579ed83b10989fc57d6dd53.bindPopup(popup_ed3a4a29bcce51207bbad49b6e624764)
        ;

        
    
    
            var poly_line_d6e1f91b31eb890a7d343f3403846823 = L.polyline(
                [[41.8968035, -87.6540826], [41.8970686, -87.6538605], [41.8971327, -87.6538051]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5f4884afe5bdc3fc39b5040adbafd3d8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0505f79461b0318ab10473e008654a46 = $(`<div id=&quot;html_0505f79461b0318ab10473e008654a46&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 7933048528 → 10556426050 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59586273&quot; target=&quot;_blank&quot;>59586273</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>43.215113076281725</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Ogden Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_5f4884afe5bdc3fc39b5040adbafd3d8.setContent(html_0505f79461b0318ab10473e008654a46);
            
        

        poly_line_d6e1f91b31eb890a7d343f3403846823.bindPopup(popup_5f4884afe5bdc3fc39b5040adbafd3d8)
        ;

        
    
    
            var poly_line_745d327a9e339860ff2b047c82ed3289 = L.polyline(
                [[41.9059962, -87.6473416], [41.9053191, -87.6473247]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_aa6132732c66fb764d98016bf8131946 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_31502c2cf1b3cf87176790be8b796b1b = $(`<div id=&quot;html_31502c2cf1b3cf87176790be8b796b1b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 8410435300 → 10264704019 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24099035&quot; target=&quot;_blank&quot;>24099035</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>75.30318005643684</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Burling Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_aa6132732c66fb764d98016bf8131946.setContent(html_31502c2cf1b3cf87176790be8b796b1b);
            
        

        poly_line_745d327a9e339860ff2b047c82ed3289.bindPopup(popup_aa6132732c66fb764d98016bf8131946)
        ;

        
    
    
            var poly_line_e04088ac6af76a8f0afd19ddca907f07 = L.polyline(
                [[41.9059962, -87.6473416], [41.9062203, -87.647349], [41.9062708, -87.6473507]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9b612bad7f7fb249d751841c5918d0fd = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_33a84ddd9d310544dea9bfab392e8af3 = $(`<div id=&quot;html_33a84ddd9d310544dea9bfab392e8af3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 8410435300 → 935894907 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24099035&quot; target=&quot;_blank&quot;>24099035</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>30.543455855569498</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Burling Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_9b612bad7f7fb249d751841c5918d0fd.setContent(html_33a84ddd9d310544dea9bfab392e8af3);
            
        

        poly_line_e04088ac6af76a8f0afd19ddca907f07.bindPopup(popup_9b612bad7f7fb249d751841c5918d0fd)
        ;

        
    
    
            var poly_line_b0617a3bec9288041d9232aaa04d34d3 = L.polyline(
                [[41.9059962, -87.6473416], [41.9059951, -87.6474165], [41.9059923, -87.6476075], [41.9059996, -87.6476349]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_58e0f161d9f4628c884afa5425871153 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_489e5e7ddbbf84ad8d2bccaec65c47cd = $(`<div id=&quot;html_489e5e7ddbbf84ad8d2bccaec65c47cd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 8410435300 → 8410435302 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/905648956&quot; target=&quot;_blank&quot;>905648956</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>24.417523942446685</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Fair Place</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_58e0f161d9f4628c884afa5425871153.setContent(html_489e5e7ddbbf84ad8d2bccaec65c47cd);
            
        

        poly_line_b0617a3bec9288041d9232aaa04d34d3.bindPopup(popup_58e0f161d9f4628c884afa5425871153)
        ;

        
    
    
            var poly_line_85514022c78ede6f3fbb419fbbd3c382 = L.polyline(
                [[41.9060237, -87.6479268], [41.9060235, -87.6477092], [41.9060208, -87.6476808], [41.9060099, -87.6476543], [41.9059996, -87.6476349]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f5619345d9a54b01db60a26db5268e63 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_53e552376ee39c1c3315ef9265220048 = $(`<div id=&quot;html_53e552376ee39c1c3315ef9265220048&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 8410435301 → 8410435302 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/905648956&quot; target=&quot;_blank&quot;>905648956</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>24.85487645002236</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Fair Place</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_f5619345d9a54b01db60a26db5268e63.setContent(html_53e552376ee39c1c3315ef9265220048);
            
        

        poly_line_85514022c78ede6f3fbb419fbbd3c382.bindPopup(popup_f5619345d9a54b01db60a26db5268e63)
        ;

        
    
    
            var poly_line_5cee8bcdfbbcee45c9ce6a9f954c6a2a = L.polyline(
                [[41.9059996, -87.6476349], [41.9056254, -87.647629]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_830de8550be40af535f98b9562ac70fb = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_554c6d70af328775e068d4ecbaa3c13e = $(`<div id=&quot;html_554c6d70af328775e068d4ecbaa3c13e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 8410435302 → 8410435307 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/905648957&quot; target=&quot;_blank&quot;>905648957</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>41.61206497855659</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_830de8550be40af535f98b9562ac70fb.setContent(html_554c6d70af328775e068d4ecbaa3c13e);
            
        

        poly_line_5cee8bcdfbbcee45c9ce6a9f954c6a2a.bindPopup(popup_830de8550be40af535f98b9562ac70fb)
        ;

        
    
    
            var poly_line_6584547aff34d6c559b253fc2c040c17 = L.polyline(
                [[41.9059996, -87.6476349], [41.9060099, -87.6476543], [41.9060208, -87.6476808], [41.9060235, -87.6477092], [41.9060237, -87.6479268]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ae829b9218da4da31fefa50e49504a51 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_edecd0a6377d90821aa9dc62f8702a0c = $(`<div id=&quot;html_edecd0a6377d90821aa9dc62f8702a0c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 8410435302 → 8410435301 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/905648956&quot; target=&quot;_blank&quot;>905648956</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>24.85487645002236</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Fair Place</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_ae829b9218da4da31fefa50e49504a51.setContent(html_edecd0a6377d90821aa9dc62f8702a0c);
            
        

        poly_line_6584547aff34d6c559b253fc2c040c17.bindPopup(popup_ae829b9218da4da31fefa50e49504a51)
        ;

        
    
    
            var poly_line_3c06ffd86d645fe1592568546d352e68 = L.polyline(
                [[41.9059996, -87.6476349], [41.9059923, -87.6476075], [41.9059951, -87.6474165], [41.9059962, -87.6473416]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7f3b78f423feeb198b538a4b38a11e44 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7efe508f345087483d87955fed84dd02 = $(`<div id=&quot;html_7efe508f345087483d87955fed84dd02&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 8410435302 → 8410435300 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/905648956&quot; target=&quot;_blank&quot;>905648956</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>24.417523942446685</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Fair Place</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_7f3b78f423feeb198b538a4b38a11e44.setContent(html_7efe508f345087483d87955fed84dd02);
            
        

        poly_line_3c06ffd86d645fe1592568546d352e68.bindPopup(popup_7f3b78f423feeb198b538a4b38a11e44)
        ;

        
    
    
            var poly_line_29314e22fb6e6f54d012aafd57629c72 = L.polyline(
                [[41.9056254, -87.647629], [41.9059996, -87.6476349]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4d818c7ecfd8f5aa48a88c854075832a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_29a051faf0c9dff02f7381be783b6368 = $(`<div id=&quot;html_29a051faf0c9dff02f7381be783b6368&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 8410435307 → 8410435302 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/905648957&quot; target=&quot;_blank&quot;>905648957</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>41.61206497855659</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_4d818c7ecfd8f5aa48a88c854075832a.setContent(html_29a051faf0c9dff02f7381be783b6368);
            
        

        poly_line_29314e22fb6e6f54d012aafd57629c72.bindPopup(popup_4d818c7ecfd8f5aa48a88c854075832a)
        ;

        
    
    
            var poly_line_fb3e814408d7da9bf24a1075581ce8a3 = L.polyline(
                [[41.9012146, -87.6431191], [41.9013323, -87.6431237]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_55e99acb2d9e5820e00b89d1957ad5fa = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d7bdf32040c5b86bddf90ce1e09c9b52 = $(`<div id=&quot;html_d7bdf32040c5b86bddf90ce1e09c9b52&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 8410482740 → 10866693152 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59208011&quot; target=&quot;_blank&quot;>59208011</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>13.093197341852008</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_55e99acb2d9e5820e00b89d1957ad5fa.setContent(html_d7bdf32040c5b86bddf90ce1e09c9b52);
            
        

        poly_line_fb3e814408d7da9bf24a1075581ce8a3.bindPopup(popup_55e99acb2d9e5820e00b89d1957ad5fa)
        ;

        
    
    
            var poly_line_94ddeb64597e7a979b102fe4ae6dff48 = L.polyline(
                [[41.9012146, -87.6431191], [41.9006576, -87.6430975]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_cc4bd7394dea3cbb27abcb66c89cc073 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_35763ef2a9151cb6ad1834ea1b53edc8 = $(`<div id=&quot;html_35763ef2a9151cb6ad1834ea1b53edc8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 8410482740 → 6093478458 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59208011&quot; target=&quot;_blank&quot;>59208011</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>61.96145537069624</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_cc4bd7394dea3cbb27abcb66c89cc073.setContent(html_35763ef2a9151cb6ad1834ea1b53edc8);
            
        

        poly_line_94ddeb64597e7a979b102fe4ae6dff48.bindPopup(popup_cc4bd7394dea3cbb27abcb66c89cc073)
        ;

        
    
    
            var poly_line_d3e0bae2ef990f6f2a0a2b20510be093 = L.polyline(
                [[41.9012146, -87.6431191], [41.9012153, -87.6430213], [41.9012221, -87.6425588]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1974d5df49ed69e381755e7873141aa6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_39746807c9064718b062738127021c06 = $(`<div id=&quot;html_39746807c9064718b062738127021c06&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 8410482740 → 8410482741 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/905656859&quot; target=&quot;_blank&quot;>905656859</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>46.37950572753165</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_1974d5df49ed69e381755e7873141aa6.setContent(html_39746807c9064718b062738127021c06);
            
        

        poly_line_d3e0bae2ef990f6f2a0a2b20510be093.bindPopup(popup_1974d5df49ed69e381755e7873141aa6)
        ;

        
    
    
            var poly_line_efd6a3d1d1c326cd3188b63ff424d461 = L.polyline(
                [[41.9012221, -87.6425588], [41.9012153, -87.6430213], [41.9012146, -87.6431191]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_cbcf9fdcf55547e0df3b7e180761a190 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f1b968b0e7617fd9c00cbd27bafd111c = $(`<div id=&quot;html_f1b968b0e7617fd9c00cbd27bafd111c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 8410482741 → 8410482740 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/905656859&quot; target=&quot;_blank&quot;>905656859</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>46.37950572753165</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_cbcf9fdcf55547e0df3b7e180761a190.setContent(html_f1b968b0e7617fd9c00cbd27bafd111c);
            
        

        poly_line_efd6a3d1d1c326cd3188b63ff424d461.bindPopup(popup_cbcf9fdcf55547e0df3b7e180761a190)
        ;

        
    
    
            var poly_line_799a59c2864878a8eca0d58298548970 = L.polyline(
                [[41.8968001, -87.6554818], [41.8968708, -87.6555871], [41.8969873, -87.6557604]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4efdbc9ff678979895400666a0d5028b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_eda474c39c033dfd16cc4e0eebaa805b = $(`<div id=&quot;html_eda474c39c033dfd16cc4e0eebaa805b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 8595362338 → 10885523393 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/401113948&quot; target=&quot;_blank&quot;>401113948</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>31.06472145841466</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_4efdbc9ff678979895400666a0d5028b.setContent(html_eda474c39c033dfd16cc4e0eebaa805b);
            
        

        poly_line_799a59c2864878a8eca0d58298548970.bindPopup(popup_4efdbc9ff678979895400666a0d5028b)
        ;

        
    
    
            var poly_line_285bd3db26e23ac7fb5f14e6a43da776 = L.polyline(
                [[41.8969199, -87.6536059], [41.8970357, -87.6536193]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_71d073895270085307d9016b26ea3d20 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_63776826e7c445dfdfaf7d75cfc7f9aa = $(`<div id=&quot;html_63776826e7c445dfdfaf7d75cfc7f9aa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 8627662282 → 5299785531 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59586325&quot; target=&quot;_blank&quot;>59586325</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>12.924067152876829</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Carpenter Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_71d073895270085307d9016b26ea3d20.setContent(html_63776826e7c445dfdfaf7d75cfc7f9aa);
            
        

        poly_line_285bd3db26e23ac7fb5f14e6a43da776.bindPopup(popup_71d073895270085307d9016b26ea3d20)
        ;

        
    
    
            var poly_line_4972d6d1278ad12fa282e7299d15c1dc = L.polyline(
                [[41.8986511, -87.6438839], [41.8996498, -87.6447174], [41.8996732, -87.6447369], [41.8997398, -87.6447901]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_71b2c09515a66501b53ad456bc4e9829 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_15798b534a024e144cc37a9d7b9201b0 = $(`<div id=&quot;html_15798b534a024e144cc37a9d7b9201b0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 8728510610 → 261230962 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/186983204&quot; target=&quot;_blank&quot;>186983204</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>142.41039126449056</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_71b2c09515a66501b53ad456bc4e9829.setContent(html_15798b534a024e144cc37a9d7b9201b0);
            
        

        poly_line_4972d6d1278ad12fa282e7299d15c1dc.bindPopup(popup_71b2c09515a66501b53ad456bc4e9829)
        ;

        
    
    
            var poly_line_f74d0ad9f3b2c12e81e02822da126f08 = L.polyline(
                [[41.8986511, -87.6438839], [41.8986783, -87.6438252], [41.8987219, -87.643731], [41.8987531, -87.6436942], [41.8987824, -87.6436858], [41.8988044, -87.6437037]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0efd273f8a0f2b912596410da76b467a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8baf669a3d4716fc6ba78553161b8943 = $(`<div id=&quot;html_8baf669a3d4716fc6ba78553161b8943&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 8728510610 → 8728510614 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/942608513&quot; target=&quot;_blank&quot;>942608513</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>25.711652053512676</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_0efd273f8a0f2b912596410da76b467a.setContent(html_8baf669a3d4716fc6ba78553161b8943);
            
        

        poly_line_f74d0ad9f3b2c12e81e02822da126f08.bindPopup(popup_0efd273f8a0f2b912596410da76b467a)
        ;

        
    
    
            var poly_line_472903f32cd19a8ad0db73b7c9c9e370 = L.polyline(
                [[41.8988044, -87.6437037], [41.8987824, -87.6436858], [41.8987531, -87.6436942], [41.8987219, -87.643731], [41.8986783, -87.6438252], [41.8986511, -87.6438839]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a9c304ac6472b99b1e3f20f66fc60b9f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_86bffc6ee8367ef52b7a525389363010 = $(`<div id=&quot;html_86bffc6ee8367ef52b7a525389363010&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 8728510614 → 8728510610 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/942608513&quot; target=&quot;_blank&quot;>942608513</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>25.711652053512672</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_a9c304ac6472b99b1e3f20f66fc60b9f.setContent(html_86bffc6ee8367ef52b7a525389363010);
            
        

        poly_line_472903f32cd19a8ad0db73b7c9c9e370.bindPopup(popup_a9c304ac6472b99b1e3f20f66fc60b9f)
        ;

        
    
    
            var poly_line_5f381bea85db0ac501b751adfc6d7073 = L.polyline(
                [[41.9001478, -87.6613542], [41.9001054, -87.6614047]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_12c6d03053c02875bfb9582ba5adc7bb = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_aad183eda6b354aca293f863274fa286 = $(`<div id=&quot;html_aad183eda6b354aca293f863274fa286&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9042234635 → 365024877 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/32468937&quot; target=&quot;_blank&quot;>32468937</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>6.300545481321354</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Cortez Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_12c6d03053c02875bfb9582ba5adc7bb.setContent(html_aad183eda6b354aca293f863274fa286);
            
        

        poly_line_5f381bea85db0ac501b751adfc6d7073.bindPopup(popup_12c6d03053c02875bfb9582ba5adc7bb)
        ;

        
    
    
            var poly_line_faaa1262c068462c2d4e41ae678f9ad0 = L.polyline(
                [[41.9001478, -87.6613542], [41.9001692, -87.6613288], [41.9003219, -87.6611474], [41.9003525, -87.6611199], [41.9003908, -87.6611165], [41.9004276, -87.6611188], [41.9007312, -87.6611742]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d818a262206e7a9f0b44015325b15985 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f5522c1e220bd49bea474edbaf7e7edf = $(`<div id=&quot;html_f5522c1e220bd49bea474edbaf7e7edf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9042234635 → 261092289 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/32468937&quot; target=&quot;_blank&quot;>32468937</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>72.36699171308257</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Cortez Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_d818a262206e7a9f0b44015325b15985.setContent(html_f5522c1e220bd49bea474edbaf7e7edf);
            
        

        poly_line_faaa1262c068462c2d4e41ae678f9ad0.bindPopup(popup_d818a262206e7a9f0b44015325b15985)
        ;

        
    
    
            var poly_line_7350169347b9881298e95303024b2468 = L.polyline(
                [[41.9091826, -87.6427732], [41.9091823, -87.6427974]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5933bf60cac7994f3e354c759feb1c32 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5f14702267e7b997800508d6a49e3987 = $(`<div id=&quot;html_5f14702267e7b997800508d6a49e3987&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9215532503 → 2204462549 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24085266&quot; target=&quot;_blank&quot;>24085266</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>2.002873374166507</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Blackhawk Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_5933bf60cac7994f3e354c759feb1c32.setContent(html_5f14702267e7b997800508d6a49e3987);
            
        

        poly_line_7350169347b9881298e95303024b2468.bindPopup(popup_5933bf60cac7994f3e354c759feb1c32)
        ;

        
    
    
            var poly_line_81ebb03a32c2ae4816ad3715b6bf37b5 = L.polyline(
                [[41.9091826, -87.6427732], [41.9092707, -87.642776], [41.9104372, -87.6428155], [41.9104446, -87.6428157], [41.9106062, -87.6428212]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_010b3e86f6ab8163cc3f308db700b1be = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5bbfdff8195e4302f5e1ee8075c3eb4a = $(`<div id=&quot;html_5bbfdff8195e4302f5e1ee8075c3eb4a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9215532503 → 2204462582 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/665996057&quot; target=&quot;_blank&quot;>665996057</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>158.34716884533316</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_010b3e86f6ab8163cc3f308db700b1be.setContent(html_5bbfdff8195e4302f5e1ee8075c3eb4a);
            
        

        poly_line_81ebb03a32c2ae4816ad3715b6bf37b5.bindPopup(popup_010b3e86f6ab8163cc3f308db700b1be)
        ;

        
    
    
            var poly_line_49d4b819bebae298ab4fb666d3b6a9a5 = L.polyline(
                [[41.9069345, -87.6554385], [41.9067004, -87.655433], [41.9066798, -87.6554325], [41.9064522, -87.6554272], [41.9064386, -87.6554269], [41.9060315, -87.6554173], [41.9058131, -87.6554121], [41.9054501, -87.6554036], [41.9053878, -87.6554014], [41.9053482, -87.6554], [41.9053139, -87.6553954]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f6ea84005ee2f670fbb77ad2231a266d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ccbb20a6e3d77c96d4ad6dd97c445c9a = $(`<div id=&quot;html_ccbb20a6e3d77c96d4ad6dd97c445c9a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9391285666 → 5493314543 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59204032&quot; target=&quot;_blank&quot;>59204032</a>, <a href=&quot;https://www.openstreetmap.org/way/59204024&quot; target=&quot;_blank&quot;>59204024</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>180.25088892721905</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Cherry Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr>             </table>         </div>         </div>`)[0];
                popup_f6ea84005ee2f670fbb77ad2231a266d.setContent(html_ccbb20a6e3d77c96d4ad6dd97c445c9a);
            
        

        poly_line_49d4b819bebae298ab4fb666d3b6a9a5.bindPopup(popup_f6ea84005ee2f670fbb77ad2231a266d)
        ;

        
    
    
            var poly_line_64cfee1e22b9f10905ea098800bab08f = L.polyline(
                [[41.9069345, -87.6554385], [41.9070259, -87.6554415], [41.9071569, -87.6554457]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e09b7f2726713d7dde562241b8a32756 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3aa4e1564e74acb4b23a520bded27163 = $(`<div id=&quot;html_3aa4e1564e74acb4b23a520bded27163&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9391285666 → 12107616297 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/372671695&quot; target=&quot;_blank&quot;>372671695</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>24.73696447395175</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Cherry Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_e09b7f2726713d7dde562241b8a32756.setContent(html_3aa4e1564e74acb4b23a520bded27163);
            
        

        poly_line_64cfee1e22b9f10905ea098800bab08f.bindPopup(popup_e09b7f2726713d7dde562241b8a32756)
        ;

        
    
    
            var poly_line_dff879e783dff6af14a8dab0eaec5b18 = L.polyline(
                [[41.9069345, -87.6554385], [41.9069162, -87.6553765], [41.9068859, -87.6553201], [41.9067729, -87.6551965]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_52e65162bb6601348a1c9ec36d74f837 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_db9e9ef6ba24ddb02d38dce240ccde55 = $(`<div id=&quot;html_db9e9ef6ba24ddb02d38dce240ccde55&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9391285666 → 5493314432 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1125567628&quot; target=&quot;_blank&quot;>1125567628</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>27.477902392618656</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Hickory Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_52e65162bb6601348a1c9ec36d74f837.setContent(html_db9e9ef6ba24ddb02d38dce240ccde55);
            
        

        poly_line_dff879e783dff6af14a8dab0eaec5b18.bindPopup(popup_52e65162bb6601348a1c9ec36d74f837)
        ;

        
    
    
            var poly_line_3e463c4051612718222bb6dea7db42dd = L.polyline(
                [[41.9032284, -87.6487222], [41.9031863, -87.6486777], [41.9031462, -87.6485821], [41.9031435, -87.6485733], [41.9031234, -87.6485263]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_95dc5c2746df7fc85b6b45adb07ce638 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c4b66e11f5724c65b749f87e50db92f9 = $(`<div id=&quot;html_c4b66e11f5724c65b749f87e50db92f9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9432544739 → 12183238005 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1022752435&quot; target=&quot;_blank&quot;>1022752435</a>, <a href=&quot;https://www.openstreetmap.org/way/1022752436&quot; target=&quot;_blank&quot;>1022752436</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.31195852314039</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_95dc5c2746df7fc85b6b45adb07ce638.setContent(html_c4b66e11f5724c65b749f87e50db92f9);
            
        

        poly_line_3e463c4051612718222bb6dea7db42dd.bindPopup(popup_95dc5c2746df7fc85b6b45adb07ce638)
        ;

        
    
    
            var poly_line_58475691a2f57b27c609b40c94866818 = L.polyline(
                [[41.9090363, -87.6548178], [41.9089763, -87.6549475]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_bfa9889c7a144e2e24bc4f821deed624 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4fb50a89c2cb07de76fb18d3da90d6b3 = $(`<div id=&quot;html_4fb50a89c2cb07de76fb18d3da90d6b3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9581012022 → 11968102694 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24083759&quot; target=&quot;_blank&quot;>24083759</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>12.637556619456376</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Weed Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_bfa9889c7a144e2e24bc4f821deed624.setContent(html_4fb50a89c2cb07de76fb18d3da90d6b3);
            
        

        poly_line_58475691a2f57b27c609b40c94866818.bindPopup(popup_bfa9889c7a144e2e24bc4f821deed624)
        ;

        
    
    
            var poly_line_e1a58f6557acf5f74f27a4804951fd5c = L.polyline(
                [[41.8985142, -87.6566016], [41.8987223, -87.6566103]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5e58c895da04e5896f630342a199a446 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3154eb3f7f45ebc3a33314344ec35af3 = $(`<div id=&quot;html_3154eb3f7f45ebc3a33314344ec35af3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9687430176 → 10282528013 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1124448281&quot; target=&quot;_blank&quot;>1124448281</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>23.150897625233373</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_5e58c895da04e5896f630342a199a446.setContent(html_3154eb3f7f45ebc3a33314344ec35af3);
            
        

        poly_line_e1a58f6557acf5f74f27a4804951fd5c.bindPopup(popup_5e58c895da04e5896f630342a199a446)
        ;

        
    
    
            var poly_line_b55bcc86058c6b0f7a6431e9c83160ab = L.polyline(
                [[41.8985142, -87.6566016], [41.8983833, -87.6565954]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fe0b45dce3a49a166c07a1db00a07c97 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e949632e079cb4b46fd4816c77933fc0 = $(`<div id=&quot;html_e949632e079cb4b46fd4816c77933fc0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9687430176 → 261185599 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1124448281&quot; target=&quot;_blank&quot;>1124448281</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>14.564479095370286</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_fe0b45dce3a49a166c07a1db00a07c97.setContent(html_e949632e079cb4b46fd4816c77933fc0);
            
        

        poly_line_b55bcc86058c6b0f7a6431e9c83160ab.bindPopup(popup_fe0b45dce3a49a166c07a1db00a07c97)
        ;

        
    
    
            var poly_line_ea4b40fe3d9c3a03472add7c8696762b = L.polyline(
                [[41.8985142, -87.6566016], [41.898513, -87.6567131], [41.89851, -87.656986], [41.8990664, -87.6570047]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0fc46cf42d743c63d7e255838bfe06ca = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9f0a4d5ca36c4f40405f6021edf794c8 = $(`<div id=&quot;html_9f0a4d5ca36c4f40405f6021edf794c8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9687430176 → 9687430178 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1054143212&quot; target=&quot;_blank&quot;>1054143212</a>, <a href=&quot;https://www.openstreetmap.org/way/1097891374&quot; target=&quot;_blank&quot;>1097891374</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>93.70686829071877</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_0fc46cf42d743c63d7e255838bfe06ca.setContent(html_9f0a4d5ca36c4f40405f6021edf794c8);
            
        

        poly_line_ea4b40fe3d9c3a03472add7c8696762b.bindPopup(popup_0fc46cf42d743c63d7e255838bfe06ca)
        ;

        
    
    
            var poly_line_a76e917ff6e2c80db6751764a8c6aa30 = L.polyline(
                [[41.8990664, -87.6570047], [41.89851, -87.656986], [41.898513, -87.6567131], [41.8985142, -87.6566016]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_15d6702c16a11520aa9cf4edd92bce75 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b55dac92c3951c2454fb2c6fffd0eb97 = $(`<div id=&quot;html_b55dac92c3951c2454fb2c6fffd0eb97&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9687430178 → 9687430176 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1054143212&quot; target=&quot;_blank&quot;>1054143212</a>, <a href=&quot;https://www.openstreetmap.org/way/1097891374&quot; target=&quot;_blank&quot;>1097891374</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>93.70686829071879</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_15d6702c16a11520aa9cf4edd92bce75.setContent(html_b55dac92c3951c2454fb2c6fffd0eb97);
            
        

        poly_line_a76e917ff6e2c80db6751764a8c6aa30.bindPopup(popup_15d6702c16a11520aa9cf4edd92bce75)
        ;

        
    
    
            var poly_line_2a23c39fab82300cef796b93f8acfbe8 = L.polyline(
                [[41.8998756, -87.6571781], [41.8998742, -87.6572484]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b08427b5bcfde7dd522368984efe2a3d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_30a97ed95a38da0fdd98624400561699 = $(`<div id=&quot;html_30a97ed95a38da0fdd98624400561699&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9687430258 → 5479954573 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/569914535&quot; target=&quot;_blank&quot;>569914535</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>5.820387665848346</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Augusta Boulevard</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_b08427b5bcfde7dd522368984efe2a3d.setContent(html_30a97ed95a38da0fdd98624400561699);
            
        

        poly_line_2a23c39fab82300cef796b93f8acfbe8.bindPopup(popup_b08427b5bcfde7dd522368984efe2a3d)
        ;

        
    
    
            var poly_line_520ba5b45e6f8c4dd65b5c592b03d1ef = L.polyline(
                [[41.8998756, -87.6571781], [41.8998791, -87.6570066], [41.8998839, -87.6567679], [41.8998847, -87.6567283]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8ea6ee13e58c47924d5274e6ec3d3aa1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8d49feb747162a1debfc457b654f1cdb = $(`<div id=&quot;html_8d49feb747162a1debfc457b654f1cdb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9687430258 → 11967979323 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/569914535&quot; target=&quot;_blank&quot;>569914535</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>37.24097027042412</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Augusta Boulevard</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_8ea6ee13e58c47924d5274e6ec3d3aa1.setContent(html_8d49feb747162a1debfc457b654f1cdb);
            
        

        poly_line_520ba5b45e6f8c4dd65b5c592b03d1ef.bindPopup(popup_8ea6ee13e58c47924d5274e6ec3d3aa1)
        ;

        
    
    
            var poly_line_738fc21ccc07769d2f4707d71c89b8dd = L.polyline(
                [[41.8998756, -87.6571781], [41.8997999, -87.6571752], [41.8996221, -87.6571685]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_420a2aea4991516816d19ee68fad48b7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1c605f8407420319982401ef553cb50d = $(`<div id=&quot;html_1c605f8407420319982401ef553cb50d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9687430258 → 9687430259 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1054143225&quot; target=&quot;_blank&quot;>1054143225</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>28.19914994974404</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_420a2aea4991516816d19ee68fad48b7.setContent(html_1c605f8407420319982401ef553cb50d);
            
        

        poly_line_738fc21ccc07769d2f4707d71c89b8dd.bindPopup(popup_420a2aea4991516816d19ee68fad48b7)
        ;

        
    
    
            var poly_line_b2a3b5fd87be81fb442c53b8ff834ccb = L.polyline(
                [[41.8996221, -87.6571685], [41.8997999, -87.6571752], [41.8998756, -87.6571781]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_cfcdedfafbbbb0306e7af6f153a45549 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a8a843575b0f6af02a6e2e16b0473e52 = $(`<div id=&quot;html_a8a843575b0f6af02a6e2e16b0473e52&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9687430259 → 9687430258 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1054143225&quot; target=&quot;_blank&quot;>1054143225</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>28.19914994974404</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_cfcdedfafbbbb0306e7af6f153a45549.setContent(html_a8a843575b0f6af02a6e2e16b0473e52);
            
        

        poly_line_b2a3b5fd87be81fb442c53b8ff834ccb.bindPopup(popup_cfcdedfafbbbb0306e7af6f153a45549)
        ;

        
    
    
            var poly_line_fb3553408c44b58764f812ebe0d31508 = L.polyline(
                [[41.9040125, -87.6616957], [41.9040119, -87.6618022], [41.9040117, -87.6618198]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b59c7de1e77d24b7f471538db7925999 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d6cd27c00dd70e50999772eea83c5f04 = $(`<div id=&quot;html_d6cd27c00dd70e50999772eea83c5f04&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9851392459 → 2565051775 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1073983473&quot; target=&quot;_blank&quot;>1073983473</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>10.270762604666068</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_b59c7de1e77d24b7f471538db7925999.setContent(html_d6cd27c00dd70e50999772eea83c5f04);
            
        

        poly_line_fb3553408c44b58764f812ebe0d31508.bindPopup(popup_b59c7de1e77d24b7f471538db7925999)
        ;

        
    
    
            var poly_line_ad378e3f535fe5f7c52609e56e7ed8b6 = L.polyline(
                [[41.9107273, -87.6556011], [41.9107153, -87.6555982], [41.9106904, -87.6555912], [41.9106744, -87.6555916], [41.9106544, -87.6556013], [41.9106413, -87.6555988], [41.9106285, -87.6555908], [41.9106226, -87.6555794], [41.9106181, -87.6555635]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b5f9ee615636bf75e593c590466fff1c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d25e66f921bd09a543a3ecf065160948 = $(`<div id=&quot;html_d25e66f921bd09a543a3ecf065160948&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9879287200 → 12177117245 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/232384399&quot; target=&quot;_blank&quot;>232384399</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>path</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>13.925903671684644</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_b5f9ee615636bf75e593c590466fff1c.setContent(html_d25e66f921bd09a543a3ecf065160948);
            
        

        poly_line_ad378e3f535fe5f7c52609e56e7ed8b6.bindPopup(popup_b5f9ee615636bf75e593c590466fff1c)
        ;

        
    
    
            var poly_line_785624416a98e065cbe4967b862fd4f5 = L.polyline(
                [[41.9107292, -87.6554833], [41.9107136, -87.6554875], [41.9106956, -87.6554909], [41.9106792, -87.65549], [41.9106528, -87.6554729], [41.9106291, -87.6554686], [41.9106201, -87.6554752], [41.9106168, -87.6554938], [41.9105691, -87.6554909], [41.910546, -87.65553]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f6367358792826b1dba3663dd045d92f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f7b1e263c10e6ad93111771d3ac0d395 = $(`<div id=&quot;html_f7b1e263c10e6ad93111771d3ac0d395&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9879287201 → 734236051 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/232384399&quot; target=&quot;_blank&quot;>232384399</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>path</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>23.696410011840037</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_f6367358792826b1dba3663dd045d92f.setContent(html_f7b1e263c10e6ad93111771d3ac0d395);
            
        

        poly_line_785624416a98e065cbe4967b862fd4f5.bindPopup(popup_f6367358792826b1dba3663dd045d92f)
        ;

        
    
    
            var poly_line_f01963e2e8883ac7ac309d172a759b03 = L.polyline(
                [[41.9050348, -87.6453846], [41.9050337, -87.6454846]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_929514e8bf1cb506cdc356d8484a0cfe = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fa83545417227718370d75b55234950a = $(`<div id=&quot;html_fa83545417227718370d75b55234950a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9879287204 → 2387185294 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59586637&quot; target=&quot;_blank&quot;>59586637</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>8.276629811754034</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Scott Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_929514e8bf1cb506cdc356d8484a0cfe.setContent(html_fa83545417227718370d75b55234950a);
            
        

        poly_line_f01963e2e8883ac7ac309d172a759b03.bindPopup(popup_929514e8bf1cb506cdc356d8484a0cfe)
        ;

        
    
    
            var poly_line_4a178ab66591829be256c4e65a2b64ee = L.polyline(
                [[41.9050348, -87.6453846], [41.9050396, -87.6449259]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b02b3930df8841702441d5490d77c7b1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a599ccba2f4d84c379b578cceb4e8ddc = $(`<div id=&quot;html_a599ccba2f4d84c379b578cceb4e8ddc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9879287204 → 9879287207 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59586637&quot; target=&quot;_blank&quot;>59586637</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>37.964505266910386</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Scott Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_b02b3930df8841702441d5490d77c7b1.setContent(html_a599ccba2f4d84c379b578cceb4e8ddc);
            
        

        poly_line_4a178ab66591829be256c4e65a2b64ee.bindPopup(popup_b02b3930df8841702441d5490d77c7b1)
        ;

        
    
    
            var poly_line_8aaa8d8c11f74b004125b7bcfd6a7049 = L.polyline(
                [[41.9050348, -87.6453846], [41.9050697, -87.6453697], [41.9051036, -87.6453552], [41.9051115, -87.6449743], [41.9050787, -87.6449522], [41.9050396, -87.6449259]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f2c3e23f48eff5ac6c92a74b1f1c4877 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_63ea26c8630c13ae949e4366595ffff1 = $(`<div id=&quot;html_63ea26c8630c13ae949e4366595ffff1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9879287204 → 9879287207 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1077476881&quot; target=&quot;_blank&quot;>1077476881</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>48.50442295053574</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_f2c3e23f48eff5ac6c92a74b1f1c4877.setContent(html_63ea26c8630c13ae949e4366595ffff1);
            
        

        poly_line_8aaa8d8c11f74b004125b7bcfd6a7049.bindPopup(popup_f2c3e23f48eff5ac6c92a74b1f1c4877)
        ;

        
    
    
            var poly_line_752dcab87ca20de22cef25aef4a1fa53 = L.polyline(
                [[41.9050396, -87.6449259], [41.9050348, -87.6453846]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_36a0e4bf2844a438046dbb2a93640a11 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_012126001147d1530e39a2f3f65787ec = $(`<div id=&quot;html_012126001147d1530e39a2f3f65787ec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9879287207 → 9879287204 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59586637&quot; target=&quot;_blank&quot;>59586637</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>37.964505266910386</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Scott Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_36a0e4bf2844a438046dbb2a93640a11.setContent(html_012126001147d1530e39a2f3f65787ec);
            
        

        poly_line_752dcab87ca20de22cef25aef4a1fa53.bindPopup(popup_36a0e4bf2844a438046dbb2a93640a11)
        ;

        
    
    
            var poly_line_11cf644fd2efb78f654c5df3d3e74c81 = L.polyline(
                [[41.9050396, -87.6449259], [41.9050787, -87.6449522], [41.9051115, -87.6449743], [41.9051036, -87.6453552], [41.9050697, -87.6453697], [41.9050348, -87.6453846]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b679cc2c77e9ba28f534e46f0c399bb2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1caa251cad0c4909557633e4e1c88645 = $(`<div id=&quot;html_1caa251cad0c4909557633e4e1c88645&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9879287207 → 9879287204 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1077476881&quot; target=&quot;_blank&quot;>1077476881</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>48.50442295053574</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_b679cc2c77e9ba28f534e46f0c399bb2.setContent(html_1caa251cad0c4909557633e4e1c88645);
            
        

        poly_line_11cf644fd2efb78f654c5df3d3e74c81.bindPopup(popup_b679cc2c77e9ba28f534e46f0c399bb2)
        ;

        
    
    
            var poly_line_54e67882cb1c8071bc5f1dac5b751849 = L.polyline(
                [[41.9050396, -87.6449259], [41.9050515, -87.6440131]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_de5e317ba0648710f937a6b0b7c9819f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b2916e3c5a88a722358198f6ee09704d = $(`<div id=&quot;html_b2916e3c5a88a722358198f6ee09704d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9879287207 → 10264704015 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59586637&quot; target=&quot;_blank&quot;>59586637</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>75.55240151271745</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Scott Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_de5e317ba0648710f937a6b0b7c9819f.setContent(html_b2916e3c5a88a722358198f6ee09704d);
            
        

        poly_line_54e67882cb1c8071bc5f1dac5b751849.bindPopup(popup_de5e317ba0648710f937a6b0b7c9819f)
        ;

        
    
    
            var poly_line_65749db5a9a91ce504322e691b17f697 = L.polyline(
                [[41.90055, -87.6583347], [41.9003265, -87.6583235], [41.900251, -87.6582273], [41.9002619, -87.6572689], [41.8999619, -87.6572526], [41.899934, -87.6572511], [41.8998742, -87.6572484]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_09ce17ef02f6ad3168c8f7678460c4db = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_23bb0d5cb9eec4211cbcbdc600ab409b = $(`<div id=&quot;html_23bb0d5cb9eec4211cbcbdc600ab409b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9911454347 → 5479954573 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/915013739&quot; target=&quot;_blank&quot;>915013739</a>, <a href=&quot;https://www.openstreetmap.org/way/915013740&quot; target=&quot;_blank&quot;>915013740</a>, <a href=&quot;https://www.openstreetmap.org/way/569914534&quot; target=&quot;_blank&quot;>569914534</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>158.91322555946246</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_09ce17ef02f6ad3168c8f7678460c4db.setContent(html_23bb0d5cb9eec4211cbcbdc600ab409b);
            
        

        poly_line_65749db5a9a91ce504322e691b17f697.bindPopup(popup_09ce17ef02f6ad3168c8f7678460c4db)
        ;

        
    
    
            var poly_line_33f55bd2a85d8f2a4a88b7c9e490c337 = L.polyline(
                [[41.90055, -87.6583347], [41.9005814, -87.6583363], [41.900652, -87.6583398]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b99341788d99aa0331d3ff4876d9457d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5dd71ad6ac39ff2c49fb5615807dcc96 = $(`<div id=&quot;html_5dd71ad6ac39ff2c49fb5615807dcc96&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9911454347 → 5479954576 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/915013739&quot; target=&quot;_blank&quot;>915013739</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>11.349751207884458</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_b99341788d99aa0331d3ff4876d9457d.setContent(html_5dd71ad6ac39ff2c49fb5615807dcc96);
            
        

        poly_line_33f55bd2a85d8f2a4a88b7c9e490c337.bindPopup(popup_b99341788d99aa0331d3ff4876d9457d)
        ;

        
    
    
            var poly_line_f2d447d204e8e594eec958645bcbeb2c = L.polyline(
                [[41.90055, -87.6583347], [41.9004308, -87.6579071], [41.9004296, -87.657656]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d28af2e0b7045d1996c6745aa6fe75f1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_44033b0f9bb9eb1d03a2092b050c2f5a = $(`<div id=&quot;html_44033b0f9bb9eb1d03a2092b050c2f5a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9911454347 → 9911454349 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1081382479&quot; target=&quot;_blank&quot;>1081382479</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>58.57246994660815</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_d28af2e0b7045d1996c6745aa6fe75f1.setContent(html_44033b0f9bb9eb1d03a2092b050c2f5a);
            
        

        poly_line_f2d447d204e8e594eec958645bcbeb2c.bindPopup(popup_d28af2e0b7045d1996c6745aa6fe75f1)
        ;

        
    
    
            var poly_line_d2d33366b1502dd460294690faeeb98e = L.polyline(
                [[41.9004296, -87.657656], [41.9004308, -87.6579071], [41.90055, -87.6583347]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8ed60ccd8bfb69c79a10611f8e7e7457 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6267709f2949287a3cc081e8a5912205 = $(`<div id=&quot;html_6267709f2949287a3cc081e8a5912205&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9911454349 → 9911454347 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1081382479&quot; target=&quot;_blank&quot;>1081382479</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>58.57246994660815</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_8ed60ccd8bfb69c79a10611f8e7e7457.setContent(html_6267709f2949287a3cc081e8a5912205);
            
        

        poly_line_d2d33366b1502dd460294690faeeb98e.bindPopup(popup_8ed60ccd8bfb69c79a10611f8e7e7457)
        ;

        
    
    
            var poly_line_c733b13d1ed68c51fb852f98ec9298cf = L.polyline(
                [[41.9036858, -87.6511606], [41.9040763, -87.6514567]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fabed4&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#fabed4&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4fdf6e5aab5d8bc89f0e372d2a80a656 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_88c4cb54c9bfe2b84901a54c6a77ce1e = $(`<div id=&quot;html_88c4cb54c9bfe2b84901a54c6a77ce1e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9921795554 → 9921795604 (key 0)<br>                 <b>Component</b> 8<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1205977037&quot; target=&quot;_blank&quot;>1205977037</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>49.85910975822016</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_4fdf6e5aab5d8bc89f0e372d2a80a656.setContent(html_88c4cb54c9bfe2b84901a54c6a77ce1e);
            
        

        poly_line_c733b13d1ed68c51fb852f98ec9298cf.bindPopup(popup_4fdf6e5aab5d8bc89f0e372d2a80a656)
        ;

        
    
    
            var poly_line_4881eede110a000e17582a42c1be9d79 = L.polyline(
                [[41.9040763, -87.6514567], [41.9036858, -87.6511606]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#fabed4&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#fabed4&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a35d81bfe85a36d6bbda066835644522 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a99f9efc421229d19fda038865553870 = $(`<div id=&quot;html_a99f9efc421229d19fda038865553870&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9921795604 → 9921795554 (key 0)<br>                 <b>Component</b> 8<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1205977037&quot; target=&quot;_blank&quot;>1205977037</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>49.85910975822016</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_a35d81bfe85a36d6bbda066835644522.setContent(html_a99f9efc421229d19fda038865553870);
            
        

        poly_line_4881eede110a000e17582a42c1be9d79.bindPopup(popup_a35d81bfe85a36d6bbda066835644522)
        ;

        
    
    
            var poly_line_08e5ff5005decf8977326ece27e7300d = L.polyline(
                [[41.9019119, -87.6431463], [41.9024714, -87.643168]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_30c7e8feef0ff1eae7cbdb527d21891a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_37a7b53070fa96cd7b704875a4e3c368 = $(`<div id=&quot;html_37a7b53070fa96cd7b704875a4e3c368&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9969789724 → 3408107725 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59208011&quot; target=&quot;_blank&quot;>59208011</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>62.239565120502256</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_30c7e8feef0ff1eae7cbdb527d21891a.setContent(html_37a7b53070fa96cd7b704875a4e3c368);
            
        

        poly_line_08e5ff5005decf8977326ece27e7300d.bindPopup(popup_30c7e8feef0ff1eae7cbdb527d21891a)
        ;

        
    
    
            var poly_line_1d9f8f8c82f4339861ec907d9c32b310 = L.polyline(
                [[41.9019119, -87.6431463], [41.9015866, -87.6431336], [41.9015527, -87.6431323], [41.9014743, -87.6431292]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3a07ee6799989350968fd22188247784 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b75184b4d9e40e4a521bd8903e92d3e0 = $(`<div id=&quot;html_b75184b4d9e40e4a521bd8903e92d3e0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9969789724 → 261184867 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59208011&quot; target=&quot;_blank&quot;>59208011</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>48.67954592398934</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_3a07ee6799989350968fd22188247784.setContent(html_b75184b4d9e40e4a521bd8903e92d3e0);
            
        

        poly_line_1d9f8f8c82f4339861ec907d9c32b310.bindPopup(popup_3a07ee6799989350968fd22188247784)
        ;

        
    
    
            var poly_line_589325f98193ed1cb745a7a47be96955 = L.polyline(
                [[41.9019119, -87.6431463], [41.9019148, -87.6430501], [41.9019191, -87.6427456]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a5538889fb5a7941395749e9d3a901c7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_06da12c3a84954d4dbdf4398f2452b20 = $(`<div id=&quot;html_06da12c3a84954d4dbdf4398f2452b20&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9969789724 → 9969789730 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1088137214&quot; target=&quot;_blank&quot;>1088137214</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>33.173516555960305</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_a5538889fb5a7941395749e9d3a901c7.setContent(html_06da12c3a84954d4dbdf4398f2452b20);
            
        

        poly_line_589325f98193ed1cb745a7a47be96955.bindPopup(popup_a5538889fb5a7941395749e9d3a901c7)
        ;

        
    
    
            var poly_line_1c1f2392f5c898852edb17e8e123ab71 = L.polyline(
                [[41.9023728, -87.642539], [41.9019627, -87.6425285], [41.901933, -87.6425464], [41.9019215, -87.6425953], [41.9019205, -87.6426602]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_04e80e236fe0c9153a5e2a200b2d250f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d5e13e32b78d9c2855e2ddd415e38118 = $(`<div id=&quot;html_d5e13e32b78d9c2855e2ddd415e38118&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9969789729 → 9969789736 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1088137214&quot; target=&quot;_blank&quot;>1088137214</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>58.84552936690999</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_04e80e236fe0c9153a5e2a200b2d250f.setContent(html_d5e13e32b78d9c2855e2ddd415e38118);
            
        

        poly_line_1c1f2392f5c898852edb17e8e123ab71.bindPopup(popup_04e80e236fe0c9153a5e2a200b2d250f)
        ;

        
    
    
            var poly_line_7adf08745617477ab8968fc80f6eaa6a = L.polyline(
                [[41.9023728, -87.642539], [41.9023715, -87.6426953], [41.902358, -87.6427404], [41.9023316, -87.6427588], [41.9019191, -87.6427456]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e8a468e7e813caf60a8b82173f4f03cd = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9995c62599694d915036b8f8c30bfc27 = $(`<div id=&quot;html_9995c62599694d915036b8f8c30bfc27&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9969789729 → 9969789730 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1088137215&quot; target=&quot;_blank&quot;>1088137215</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>66.14736553817662</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_e8a468e7e813caf60a8b82173f4f03cd.setContent(html_9995c62599694d915036b8f8c30bfc27);
            
        

        poly_line_7adf08745617477ab8968fc80f6eaa6a.bindPopup(popup_e8a468e7e813caf60a8b82173f4f03cd)
        ;

        
    
    
            var poly_line_2acaef7e9e97d13114f4d8ab938b7b8c = L.polyline(
                [[41.9019191, -87.6427456], [41.9019205, -87.6426602]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_943ae3eddad80713db8f75161f2ba888 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e2b4405c3fbed8f0328404556d11c90a = $(`<div id=&quot;html_e2b4405c3fbed8f0328404556d11c90a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9969789730 → 9969789736 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1088137214&quot; target=&quot;_blank&quot;>1088137214</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.0695289081416375</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_943ae3eddad80713db8f75161f2ba888.setContent(html_e2b4405c3fbed8f0328404556d11c90a);
            
        

        poly_line_2acaef7e9e97d13114f4d8ab938b7b8c.bindPopup(popup_943ae3eddad80713db8f75161f2ba888)
        ;

        
    
    
            var poly_line_941e06db64f1576418eab38d7e12cbb8 = L.polyline(
                [[41.9019191, -87.6427456], [41.9019148, -87.6430501], [41.9019119, -87.6431463]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6b54bfb3106621291a2c4e9972ff4998 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3ad4c2e35c4e9a3ea47186b935f21cb6 = $(`<div id=&quot;html_3ad4c2e35c4e9a3ea47186b935f21cb6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9969789730 → 9969789724 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1088137214&quot; target=&quot;_blank&quot;>1088137214</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>33.173516555960305</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_6b54bfb3106621291a2c4e9972ff4998.setContent(html_3ad4c2e35c4e9a3ea47186b935f21cb6);
            
        

        poly_line_941e06db64f1576418eab38d7e12cbb8.bindPopup(popup_6b54bfb3106621291a2c4e9972ff4998)
        ;

        
    
    
            var poly_line_5704a62c5a1f26152aca21e6bb49f8e4 = L.polyline(
                [[41.9019191, -87.6427456], [41.9023316, -87.6427588], [41.902358, -87.6427404], [41.9023715, -87.6426953], [41.9023728, -87.642539]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3a965e5d7b8accad4017092f08da0b1c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7eb2051987176346d74bad98b30ab402 = $(`<div id=&quot;html_7eb2051987176346d74bad98b30ab402&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9969789730 → 9969789729 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1088137215&quot; target=&quot;_blank&quot;>1088137215</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>66.14736553817663</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_3a965e5d7b8accad4017092f08da0b1c.setContent(html_7eb2051987176346d74bad98b30ab402);
            
        

        poly_line_5704a62c5a1f26152aca21e6bb49f8e4.bindPopup(popup_3a965e5d7b8accad4017092f08da0b1c)
        ;

        
    
    
            var poly_line_046ea58ca1d2e758948617965eaf465d = L.polyline(
                [[41.9019205, -87.6426602], [41.9019191, -87.6427456]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c9bd9442a06e4ef359500ed91b3d8a58 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e9135072f1474407638cc498d01d95c6 = $(`<div id=&quot;html_e9135072f1474407638cc498d01d95c6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9969789736 → 9969789730 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1088137214&quot; target=&quot;_blank&quot;>1088137214</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.0695289081416375</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_c9bd9442a06e4ef359500ed91b3d8a58.setContent(html_e9135072f1474407638cc498d01d95c6);
            
        

        poly_line_046ea58ca1d2e758948617965eaf465d.bindPopup(popup_c9bd9442a06e4ef359500ed91b3d8a58)
        ;

        
    
    
            var poly_line_105d12e63af3fe2a26533ba0a134401d = L.polyline(
                [[41.9019205, -87.6426602], [41.9019215, -87.6425953], [41.901933, -87.6425464], [41.9019627, -87.6425285], [41.9023728, -87.642539]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a5b338b70b441b0b94bf974e06324821 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2f03fba486828f475767c5c66606c7fc = $(`<div id=&quot;html_2f03fba486828f475767c5c66606c7fc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9969789736 → 9969789729 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1088137214&quot; target=&quot;_blank&quot;>1088137214</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>58.845529366909986</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_a5b338b70b441b0b94bf974e06324821.setContent(html_2f03fba486828f475767c5c66606c7fc);
            
        

        poly_line_105d12e63af3fe2a26533ba0a134401d.bindPopup(popup_a5b338b70b441b0b94bf974e06324821)
        ;

        
    
    
            var poly_line_cfe81fa3c0fd92e5ac068ead48c4c1d7 = L.polyline(
                [[41.9019205, -87.6426602], [41.9015599, -87.6426502], [41.9014818, -87.6426472]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c64d01151228a5560b2020340861e6be = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_03e896fd1be6a07d30c9f59c1e8bba6f = $(`<div id=&quot;html_03e896fd1be6a07d30c9f59c1e8bba6f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9969789736 → 9969789738 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1088137216&quot; target=&quot;_blank&quot;>1088137216</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>48.793371977667775</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_c64d01151228a5560b2020340861e6be.setContent(html_03e896fd1be6a07d30c9f59c1e8bba6f);
            
        

        poly_line_cfe81fa3c0fd92e5ac068ead48c4c1d7.bindPopup(popup_c64d01151228a5560b2020340861e6be)
        ;

        
    
    
            var poly_line_bd5afba928ff6d1862cb6d87b2746367 = L.polyline(
                [[41.9014818, -87.6426472], [41.9014757, -87.6430068], [41.9014754, -87.6430323], [41.9014743, -87.6431292]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0094c44893a879608f218e170996b62e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5f25f7c0976b2c3dbb08fe6bc6ccec2c = $(`<div id=&quot;html_5f25f7c0976b2c3dbb08fe6bc6ccec2c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9969789738 → 261184867 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/30954124&quot; target=&quot;_blank&quot;>30954124</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>39.90014584363454</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Hobbie Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_0094c44893a879608f218e170996b62e.setContent(html_5f25f7c0976b2c3dbb08fe6bc6ccec2c);
            
        

        poly_line_bd5afba928ff6d1862cb6d87b2746367.bindPopup(popup_0094c44893a879608f218e170996b62e)
        ;

        
    
    
            var poly_line_d60caf144d56f3614b340887ead0d8ab = L.polyline(
                [[41.9014818, -87.6426472], [41.9015599, -87.6426502], [41.9019205, -87.6426602]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_97bcc485dac2f84e972900fd7b27e727 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ad07cf14494bcec6c3525170b72c7cf4 = $(`<div id=&quot;html_ad07cf14494bcec6c3525170b72c7cf4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9969789738 → 9969789736 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1088137216&quot; target=&quot;_blank&quot;>1088137216</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>48.793371977667775</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_97bcc485dac2f84e972900fd7b27e727.setContent(html_ad07cf14494bcec6c3525170b72c7cf4);
            
        

        poly_line_d60caf144d56f3614b340887ead0d8ab.bindPopup(popup_97bcc485dac2f84e972900fd7b27e727)
        ;

        
    
    
            var poly_line_328a5a3b33e53a8a132c3d0fb58e2fac = L.polyline(
                [[41.903266, -87.6480693], [41.903305, -87.6480714], [41.9035477, -87.6480823], [41.9036431, -87.6480864]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_97f81a3ec32ddcd31c9943c063955162 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fb7aa17acc0ac5aa91a064518ab89627 = $(`<div id=&quot;html_fb7aa17acc0ac5aa91a064518ab89627&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9987432801 → 102713547 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435397261&quot; target=&quot;_blank&quot;>435397261</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>5</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>41.95564484187281</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Halsted Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_97f81a3ec32ddcd31c9943c063955162.setContent(html_fb7aa17acc0ac5aa91a064518ab89627);
            
        

        poly_line_328a5a3b33e53a8a132c3d0fb58e2fac.bindPopup(popup_97f81a3ec32ddcd31c9943c063955162)
        ;

        
    
    
            var poly_line_677f5e13587ebb8421040e7dd82fa860 = L.polyline(
                [[41.903266, -87.6480693], [41.9032255, -87.6480672], [41.9031268, -87.648062]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_870b07260fc093d90300adb242235a78 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9bec2a2a00497b217f4056a8ec45140a = $(`<div id=&quot;html_9bec2a2a00497b217f4056a8ec45140a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9987432801 → 3683147341 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1125011489&quot; target=&quot;_blank&quot;>1125011489</a>, <a href=&quot;https://www.openstreetmap.org/way/435397261&quot; target=&quot;_blank&quot;>435397261</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>['5', '4']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>15.490142167906793</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Halsted Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_870b07260fc093d90300adb242235a78.setContent(html_9bec2a2a00497b217f4056a8ec45140a);
            
        

        poly_line_677f5e13587ebb8421040e7dd82fa860.bindPopup(popup_870b07260fc093d90300adb242235a78)
        ;

        
    
    
            var poly_line_b4d18a7f370a537329f3eb29b48ef936 = L.polyline(
                [[41.903266, -87.6480693], [41.9032715, -87.6479416], [41.903276, -87.6478363]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_cd77d1009899c7fd6e7ee8234e3d60ec = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0fe3279a9a90339604c1e49406e5a6e4 = $(`<div id=&quot;html_0fe3279a9a90339604c1e49406e5a6e4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9987432801 → 11396158694 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1090384311&quot; target=&quot;_blank&quot;>1090384311</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.315008148323606</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_cd77d1009899c7fd6e7ee8234e3d60ec.setContent(html_0fe3279a9a90339604c1e49406e5a6e4);
            
        

        poly_line_b4d18a7f370a537329f3eb29b48ef936.bindPopup(popup_cd77d1009899c7fd6e7ee8234e3d60ec)
        ;

        
    
    
            var poly_line_1ed2cd9c79464426b6ac635f37113e57 = L.polyline(
                [[41.9033088, -87.6477334], [41.9032363, -87.647665], [41.9032971, -87.6475499]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3aef7a61ff60e709eb55669834c500f5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_830f7390827c22fa1a6e7cfcfcb20994 = $(`<div id=&quot;html_830f7390827c22fa1a6e7cfcfcb20994&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9987432804 → 9987432814 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1090384311&quot; target=&quot;_blank&quot;>1090384311</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.531521873266684</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_3aef7a61ff60e709eb55669834c500f5.setContent(html_830f7390827c22fa1a6e7cfcfcb20994);
            
        

        poly_line_1ed2cd9c79464426b6ac635f37113e57.bindPopup(popup_3aef7a61ff60e709eb55669834c500f5)
        ;

        
    
    
            var poly_line_a97e796a740d3464469c104bc9e65dc1 = L.polyline(
                [[41.9033088, -87.6477334], [41.9032775, -87.6478005], [41.903276, -87.6478363]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d8e4a285595195c5dc5d7ebbbfec5afe = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_bdb76cc8f4b90835b91d0a106a1285a3 = $(`<div id=&quot;html_bdb76cc8f4b90835b91d0a106a1285a3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9987432804 → 11396158694 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1090384311&quot; target=&quot;_blank&quot;>1090384311</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>9.521172558789566</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_d8e4a285595195c5dc5d7ebbbfec5afe.setContent(html_bdb76cc8f4b90835b91d0a106a1285a3);
            
        

        poly_line_a97e796a740d3464469c104bc9e65dc1.bindPopup(popup_d8e4a285595195c5dc5d7ebbbfec5afe)
        ;

        
    
    
            var poly_line_44e51e62c33cb88639d0d08a213e13de = L.polyline(
                [[41.9033088, -87.6477334], [41.903369, -87.6477844], [41.9034644, -87.6477118]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_faf6e9484808c2e401094e2061161b8a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2787f7d4dba90a585a10b028ec54899f = $(`<div id=&quot;html_2787f7d4dba90a585a10b028ec54899f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9987432804 → 9987432813 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1090384320&quot; target=&quot;_blank&quot;>1090384320</a>, <a href=&quot;https://www.openstreetmap.org/way/1090384319&quot; target=&quot;_blank&quot;>1090384319</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.104886132015523</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_faf6e9484808c2e401094e2061161b8a.setContent(html_2787f7d4dba90a585a10b028ec54899f);
            
        

        poly_line_44e51e62c33cb88639d0d08a213e13de.bindPopup(popup_faf6e9484808c2e401094e2061161b8a)
        ;

        
    
    
            var poly_line_626e69f81d4fc375f40feaa2b4e5dccf = L.polyline(
                [[41.903509, -87.6476209], [41.9034672, -87.6475851], [41.9033548, -87.6474809], [41.9033381, -87.6474681]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4e97f6958c9208dc59dffd2b7d31c3a4 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f380487568b1a22bb7815a721ce169f2 = $(`<div id=&quot;html_f380487568b1a22bb7815a721ce169f2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9987432808 → 9987467017 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1090384314&quot; target=&quot;_blank&quot;>1090384314</a>, <a href=&quot;https://www.openstreetmap.org/way/1090384315&quot; target=&quot;_blank&quot;>1090384315</a>, <a href=&quot;https://www.openstreetmap.org/way/1090384316&quot; target=&quot;_blank&quot;>1090384316</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.83445157087366</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_4e97f6958c9208dc59dffd2b7d31c3a4.setContent(html_f380487568b1a22bb7815a721ce169f2);
            
        

        poly_line_626e69f81d4fc375f40feaa2b4e5dccf.bindPopup(popup_4e97f6958c9208dc59dffd2b7d31c3a4)
        ;

        
    
    
            var poly_line_cdba0e2f940ed845a9dd31dadbed4abf = L.polyline(
                [[41.903509, -87.6476209], [41.9035345, -87.6474639], [41.9034509, -87.6473851]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_49308298908636adc11975a645ea2ce9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9207e55788130b26013da0dadc967328 = $(`<div id=&quot;html_9207e55788130b26013da0dadc967328&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9987432808 → 9987432809 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1090384311&quot; target=&quot;_blank&quot;>1090384311</a>, <a href=&quot;https://www.openstreetmap.org/way/1090384319&quot; target=&quot;_blank&quot;>1090384319</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>24.65429432385762</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_49308298908636adc11975a645ea2ce9.setContent(html_9207e55788130b26013da0dadc967328);
            
        

        poly_line_cdba0e2f940ed845a9dd31dadbed4abf.bindPopup(popup_49308298908636adc11975a645ea2ce9)
        ;

        
    
    
            var poly_line_7e46712b3b4abd5267d46a58250eed22 = L.polyline(
                [[41.903509, -87.6476209], [41.9035017, -87.6476815], [41.9034644, -87.6477118]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_145a2822f9adaaab078efb48477a0c24 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_cf5690e47f9e9ff130546630e5ae3a16 = $(`<div id=&quot;html_cf5690e47f9e9ff130546630e5ae3a16&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9987432808 → 9987432813 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1090384319&quot; target=&quot;_blank&quot;>1090384319</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>9.927172894187267</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_145a2822f9adaaab078efb48477a0c24.setContent(html_cf5690e47f9e9ff130546630e5ae3a16);
            
        

        poly_line_7e46712b3b4abd5267d46a58250eed22.bindPopup(popup_145a2822f9adaaab078efb48477a0c24)
        ;

        
    
    
            var poly_line_b73847f7712169bfc0057f9c2c04e3f1 = L.polyline(
                [[41.9034509, -87.6473851], [41.9035448, -87.6471687]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_606ada3d80c7beeb65450a4e4bb9f031 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b079f8403ede3cf3528f8937c860bad0 = $(`<div id=&quot;html_b079f8403ede3cf3528f8937c860bad0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9987432809 → 9987432810 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1090384312&quot; target=&quot;_blank&quot;>1090384312</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.73053238096991</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_606ada3d80c7beeb65450a4e4bb9f031.setContent(html_b079f8403ede3cf3528f8937c860bad0);
            
        

        poly_line_b73847f7712169bfc0057f9c2c04e3f1.bindPopup(popup_606ada3d80c7beeb65450a4e4bb9f031)
        ;

        
    
    
            var poly_line_7f9aa1d1eccdaa980c00a6bbe8948538 = L.polyline(
                [[41.9034509, -87.6473851], [41.9035345, -87.6474639], [41.903509, -87.6476209]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_631e978898dc544e7cdba31d593dd8c2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9800f100e9c8117a63363e85143f30ef = $(`<div id=&quot;html_9800f100e9c8117a63363e85143f30ef&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9987432809 → 9987432808 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1090384319&quot; target=&quot;_blank&quot;>1090384319</a>, <a href=&quot;https://www.openstreetmap.org/way/1090384311&quot; target=&quot;_blank&quot;>1090384311</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>24.65429432385762</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_631e978898dc544e7cdba31d593dd8c2.setContent(html_9800f100e9c8117a63363e85143f30ef);
            
        

        poly_line_7f9aa1d1eccdaa980c00a6bbe8948538.bindPopup(popup_631e978898dc544e7cdba31d593dd8c2)
        ;

        
    
    
            var poly_line_27199403a60a1318cba463e13d32636c = L.polyline(
                [[41.9034509, -87.6473851], [41.9033965, -87.6473383], [41.9033381, -87.6474681]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f9e0a4a1301d3b153eaf48858b2fd7e9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2474a0294362ecd82926e97a168ec256 = $(`<div id=&quot;html_2474a0294362ecd82926e97a168ec256&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9987432809 → 9987467017 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1090384311&quot; target=&quot;_blank&quot;>1090384311</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.735174373750723</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_f9e0a4a1301d3b153eaf48858b2fd7e9.setContent(html_2474a0294362ecd82926e97a168ec256);
            
        

        poly_line_27199403a60a1318cba463e13d32636c.bindPopup(popup_f9e0a4a1301d3b153eaf48858b2fd7e9)
        ;

        
    
    
            var poly_line_4b80887c1adb4c4a1fdf3159f8024805 = L.polyline(
                [[41.9035448, -87.6471687], [41.9034509, -87.6473851]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3cbbf742d7b7a6bc397f4f2bdc49a10c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e0641a6999257f391254dbb4cb40cd8d = $(`<div id=&quot;html_e0641a6999257f391254dbb4cb40cd8d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9987432810 → 9987432809 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1090384312&quot; target=&quot;_blank&quot;>1090384312</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.73053238096991</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_3cbbf742d7b7a6bc397f4f2bdc49a10c.setContent(html_e0641a6999257f391254dbb4cb40cd8d);
            
        

        poly_line_4b80887c1adb4c4a1fdf3159f8024805.bindPopup(popup_3cbbf742d7b7a6bc397f4f2bdc49a10c)
        ;

        
    
    
            var poly_line_3d67b46f2a0a251ba1ac981e7f60f421 = L.polyline(
                [[41.9035448, -87.6471687], [41.9035781, -87.6471704], [41.9036554, -87.6471759]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_30f0c6b0a4c2c64372429fe3bac97989 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0f09c112152e80bb37aa496f33c92937 = $(`<div id=&quot;html_0f09c112152e80bb37aa496f33c92937&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9987432810 → 9987432812 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1090384312&quot; target=&quot;_blank&quot;>1090384312</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>12.312891755945149</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_30f0c6b0a4c2c64372429fe3bac97989.setContent(html_0f09c112152e80bb37aa496f33c92937);
            
        

        poly_line_3d67b46f2a0a251ba1ac981e7f60f421.bindPopup(popup_30f0c6b0a4c2c64372429fe3bac97989)
        ;

        
    
    
            var poly_line_bdaef71551822d196837b938faac5d49 = L.polyline(
                [[41.9035448, -87.6471687], [41.9034822, -87.6470848], [41.903217, -87.647077], [41.9030913, -87.6473233], [41.9030855, -87.6476874], [41.903276, -87.6478363]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6eb5fda1f4c0dacf3f59d4f294a3b435 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_556fd52ed2d5629d03beedbe28d2d576 = $(`<div id=&quot;html_556fd52ed2d5629d03beedbe28d2d576&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9987432810 → 11396158694 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1228856471&quot; target=&quot;_blank&quot;>1228856471</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>118.68944487512223</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_6eb5fda1f4c0dacf3f59d4f294a3b435.setContent(html_556fd52ed2d5629d03beedbe28d2d576);
            
        

        poly_line_bdaef71551822d196837b938faac5d49.bindPopup(popup_6eb5fda1f4c0dacf3f59d4f294a3b435)
        ;

        
    
    
            var poly_line_8436dfa9ff86e2437c5241435bd1168c = L.polyline(
                [[41.9036554, -87.6471759], [41.9036641, -87.6465853]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d9737c3bc92d27e25bae90cf6b1f97ad = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5737141735406a131ac3c3b2be3a07f9 = $(`<div id=&quot;html_5737141735406a131ac3c3b2be3a07f9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9987432812 → 345370271 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435397327&quot; target=&quot;_blank&quot;>435397327</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>48.887062306287376</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_d9737c3bc92d27e25bae90cf6b1f97ad.setContent(html_5737141735406a131ac3c3b2be3a07f9);
            
        

        poly_line_8436dfa9ff86e2437c5241435bd1168c.bindPopup(popup_d9737c3bc92d27e25bae90cf6b1f97ad)
        ;

        
    
    
            var poly_line_86f67e26f5bcbf0e90aba19982895a81 = L.polyline(
                [[41.9036554, -87.6471759], [41.903647, -87.6477441], [41.9036468, -87.647767]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e4650c1d8637476e12c1a24d52787d97 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f5bea246d9e2b71c8f4b701dae2dfd80 = $(`<div id=&quot;html_f5bea246d9e2b71c8f4b701dae2dfd80&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9987432812 → 353809557 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435397324&quot; target=&quot;_blank&quot;>435397324</a>, <a href=&quot;https://www.openstreetmap.org/way/435397327&quot; target=&quot;_blank&quot;>435397327</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>5</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>48.92828197999325</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_e4650c1d8637476e12c1a24d52787d97.setContent(html_f5bea246d9e2b71c8f4b701dae2dfd80);
            
        

        poly_line_86f67e26f5bcbf0e90aba19982895a81.bindPopup(popup_e4650c1d8637476e12c1a24d52787d97)
        ;

        
    
    
            var poly_line_45068508dda47a6b103e64082e9989bd = L.polyline(
                [[41.9036554, -87.6471759], [41.9035781, -87.6471704], [41.9035448, -87.6471687]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4604a6d4aed908bd6892d29de948e379 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1122eb9b5972a1887ea7735359d96a9b = $(`<div id=&quot;html_1122eb9b5972a1887ea7735359d96a9b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9987432812 → 9987432810 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1090384312&quot; target=&quot;_blank&quot;>1090384312</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>12.312891755945149</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_4604a6d4aed908bd6892d29de948e379.setContent(html_1122eb9b5972a1887ea7735359d96a9b);
            
        

        poly_line_45068508dda47a6b103e64082e9989bd.bindPopup(popup_4604a6d4aed908bd6892d29de948e379)
        ;

        
    
    
            var poly_line_7f850ab21176a2a107554a0518fffabd = L.polyline(
                [[41.9034644, -87.6477118], [41.9034253, -87.6476724], [41.9033143, -87.6475652], [41.9032971, -87.6475499]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d50a7fe297349809947d8fc70979c9a3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e84e00f394ef45d9fbafbdc81d280cac = $(`<div id=&quot;html_e84e00f394ef45d9fbafbdc81d280cac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9987432813 → 9987432814 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1090384313&quot; target=&quot;_blank&quot;>1090384313</a>, <a href=&quot;https://www.openstreetmap.org/way/1090384317&quot; target=&quot;_blank&quot;>1090384317</a>, <a href=&quot;https://www.openstreetmap.org/way/1090384318&quot; target=&quot;_blank&quot;>1090384318</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.928672119220778</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_d50a7fe297349809947d8fc70979c9a3.setContent(html_e84e00f394ef45d9fbafbdc81d280cac);
            
        

        poly_line_7f850ab21176a2a107554a0518fffabd.bindPopup(popup_d50a7fe297349809947d8fc70979c9a3)
        ;

        
    
    
            var poly_line_b0349db6fc46fa0bce855d492e10595c = L.polyline(
                [[41.9034644, -87.6477118], [41.9035017, -87.6476815], [41.903509, -87.6476209]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f8e29b4ff8d670b06e64bbe2c62e4131 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_55bfcf0952c6019ef9acf2e5fcea1ed3 = $(`<div id=&quot;html_55bfcf0952c6019ef9acf2e5fcea1ed3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9987432813 → 9987432808 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1090384319&quot; target=&quot;_blank&quot;>1090384319</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>9.927172894187267</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_f8e29b4ff8d670b06e64bbe2c62e4131.setContent(html_55bfcf0952c6019ef9acf2e5fcea1ed3);
            
        

        poly_line_b0349db6fc46fa0bce855d492e10595c.bindPopup(popup_f8e29b4ff8d670b06e64bbe2c62e4131)
        ;

        
    
    
            var poly_line_f44b39f5acf439885249316337b2c7c6 = L.polyline(
                [[41.9034644, -87.6477118], [41.903369, -87.6477844], [41.9033088, -87.6477334]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3eddf83a5dcf09fb47e5602733284b05 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7ac847cb2f21cafcf325d084c92b5bc7 = $(`<div id=&quot;html_7ac847cb2f21cafcf325d084c92b5bc7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9987432813 → 9987432804 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1090384320&quot; target=&quot;_blank&quot;>1090384320</a>, <a href=&quot;https://www.openstreetmap.org/way/1090384319&quot; target=&quot;_blank&quot;>1090384319</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.104886132015523</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_3eddf83a5dcf09fb47e5602733284b05.setContent(html_7ac847cb2f21cafcf325d084c92b5bc7);
            
        

        poly_line_f44b39f5acf439885249316337b2c7c6.bindPopup(popup_3eddf83a5dcf09fb47e5602733284b05)
        ;

        
    
    
            var poly_line_def6c7fc42afb07785406c7aead42711 = L.polyline(
                [[41.9032971, -87.6475499], [41.9033381, -87.6474681]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d8144b0b5f9fa7f5323af3f9ce422d99 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_39968d132b26b853ab9b8262305f640a = $(`<div id=&quot;html_39968d132b26b853ab9b8262305f640a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9987432814 → 9987467017 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1090384311&quot; target=&quot;_blank&quot;>1090384311</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>8.161718860968602</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_d8144b0b5f9fa7f5323af3f9ce422d99.setContent(html_39968d132b26b853ab9b8262305f640a);
            
        

        poly_line_def6c7fc42afb07785406c7aead42711.bindPopup(popup_d8144b0b5f9fa7f5323af3f9ce422d99)
        ;

        
    
    
            var poly_line_82e5e455a25ef1bb9d2cbe34ce059558 = L.polyline(
                [[41.9032971, -87.6475499], [41.9032363, -87.647665], [41.9033088, -87.6477334]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8601ee7ecfdc89d053c277c8eab096de = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_653efb835415d6e17f11461b961a1a37 = $(`<div id=&quot;html_653efb835415d6e17f11461b961a1a37&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9987432814 → 9987432804 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1090384311&quot; target=&quot;_blank&quot;>1090384311</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.531521873266684</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_8601ee7ecfdc89d053c277c8eab096de.setContent(html_653efb835415d6e17f11461b961a1a37);
            
        

        poly_line_82e5e455a25ef1bb9d2cbe34ce059558.bindPopup(popup_8601ee7ecfdc89d053c277c8eab096de)
        ;

        
    
    
            var poly_line_5ed63893b94cb79c3bf34095f869f6b4 = L.polyline(
                [[41.9032971, -87.6475499], [41.9033143, -87.6475652], [41.9034253, -87.6476724], [41.9034644, -87.6477118]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e3b80d332c05e29f9b74b3e4e64c7ca9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4f0d9804ef992447f86bb6290156dc7f = $(`<div id=&quot;html_4f0d9804ef992447f86bb6290156dc7f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9987432814 → 9987432813 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1090384313&quot; target=&quot;_blank&quot;>1090384313</a>, <a href=&quot;https://www.openstreetmap.org/way/1090384317&quot; target=&quot;_blank&quot;>1090384317</a>, <a href=&quot;https://www.openstreetmap.org/way/1090384318&quot; target=&quot;_blank&quot;>1090384318</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.928672119220778</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_e3b80d332c05e29f9b74b3e4e64c7ca9.setContent(html_4f0d9804ef992447f86bb6290156dc7f);
            
        

        poly_line_5ed63893b94cb79c3bf34095f869f6b4.bindPopup(popup_e3b80d332c05e29f9b74b3e4e64c7ca9)
        ;

        
    
    
            var poly_line_c6e5e392b5aac0cefc7d01b0430a3ebc = L.polyline(
                [[41.9033381, -87.6474681], [41.9032971, -87.6475499]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3a627f8148eb5fec60d63ee4a7d4c03a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6eb8adbe75f5fe79cb6f26bc4d1e6bb3 = $(`<div id=&quot;html_6eb8adbe75f5fe79cb6f26bc4d1e6bb3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9987467017 → 9987432814 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1090384311&quot; target=&quot;_blank&quot;>1090384311</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>8.161718860968602</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_3a627f8148eb5fec60d63ee4a7d4c03a.setContent(html_6eb8adbe75f5fe79cb6f26bc4d1e6bb3);
            
        

        poly_line_c6e5e392b5aac0cefc7d01b0430a3ebc.bindPopup(popup_3a627f8148eb5fec60d63ee4a7d4c03a)
        ;

        
    
    
            var poly_line_b7af54af813905eb6d20d328c6e160c8 = L.polyline(
                [[41.9033381, -87.6474681], [41.9033965, -87.6473383], [41.9034509, -87.6473851]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_debc3ecf7358e7af90880c8d4069b826 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_64fdfca2ae1ffa585850a53be256b012 = $(`<div id=&quot;html_64fdfca2ae1ffa585850a53be256b012&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9987467017 → 9987432809 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1090384311&quot; target=&quot;_blank&quot;>1090384311</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.735174373750723</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_debc3ecf7358e7af90880c8d4069b826.setContent(html_64fdfca2ae1ffa585850a53be256b012);
            
        

        poly_line_b7af54af813905eb6d20d328c6e160c8.bindPopup(popup_debc3ecf7358e7af90880c8d4069b826)
        ;

        
    
    
            var poly_line_a67ee87fec48d25da4b6ae4c47b5c2c2 = L.polyline(
                [[41.9033381, -87.6474681], [41.9033548, -87.6474809], [41.9034672, -87.6475851], [41.903509, -87.6476209]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_805ffc069bd3363e4f8981f2f2632675 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_84c9fd8c98f0aabf1d00c38c4c1b96ac = $(`<div id=&quot;html_84c9fd8c98f0aabf1d00c38c4c1b96ac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 9987467017 → 9987432808 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1090384314&quot; target=&quot;_blank&quot;>1090384314</a>, <a href=&quot;https://www.openstreetmap.org/way/1090384315&quot; target=&quot;_blank&quot;>1090384315</a>, <a href=&quot;https://www.openstreetmap.org/way/1090384316&quot; target=&quot;_blank&quot;>1090384316</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.83445157087366</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_805ffc069bd3363e4f8981f2f2632675.setContent(html_84c9fd8c98f0aabf1d00c38c4c1b96ac);
            
        

        poly_line_a67ee87fec48d25da4b6ae4c47b5c2c2.bindPopup(popup_805ffc069bd3363e4f8981f2f2632675)
        ;

        
    
    
            var poly_line_48041f64ce3d60983d8af09b731f6b71 = L.polyline(
                [[41.8999198, -87.6565361], [41.8999182, -87.6565704]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c138c310a6f7606683c8f8e8f3be93f6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a653265c7c032d4f5acf0dc964afd309 = $(`<div id=&quot;html_a653265c7c032d4f5acf0dc964afd309&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10099202347 → 11967979303 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/610943070&quot; target=&quot;_blank&quot;>610943070</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>2.8443709697723816</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Augusta Boulevard</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_c138c310a6f7606683c8f8e8f3be93f6.setContent(html_a653265c7c032d4f5acf0dc964afd309);
            
        

        poly_line_48041f64ce3d60983d8af09b731f6b71.bindPopup(popup_c138c310a6f7606683c8f8e8f3be93f6)
        ;

        
    
    
            var poly_line_68b2afe261df111a2fc7decd26e58ac3 = L.polyline(
                [[41.9012416, -87.6519615], [41.9012544, -87.6519341], [41.9014058, -87.651609]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9643e6ed841c1e41460dc431ae5c26a7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1a1f99b8c33038b2d5479d1c6bb4ab09 = $(`<div id=&quot;html_1a1f99b8c33038b2d5479d1c6bb4ab09&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10198867985 → 6776130125 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24074461&quot; target=&quot;_blank&quot;>24074461</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>34.4160409977796</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Bliss Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_9643e6ed841c1e41460dc431ae5c26a7.setContent(html_1a1f99b8c33038b2d5479d1c6bb4ab09);
            
        

        poly_line_68b2afe261df111a2fc7decd26e58ac3.bindPopup(popup_9643e6ed841c1e41460dc431ae5c26a7)
        ;

        
    
    
            var poly_line_c1717e6ccef3c31522b17496d51149b4 = L.polyline(
                [[41.9012416, -87.6519615], [41.9012271, -87.6519939], [41.9011818, -87.6520949]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_bfddea1b13912deabc83658ac9df7714 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_85eb03600ea54bceba192c0099469b93 = $(`<div id=&quot;html_85eb03600ea54bceba192c0099469b93&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10198867985 → 261135167 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24074461&quot; target=&quot;_blank&quot;>24074461</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>12.888274195764089</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Bliss Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_bfddea1b13912deabc83658ac9df7714.setContent(html_85eb03600ea54bceba192c0099469b93);
            
        

        poly_line_c1717e6ccef3c31522b17496d51149b4.bindPopup(popup_bfddea1b13912deabc83658ac9df7714)
        ;

        
    
    
            var poly_line_49ba9e84b40312ee494a039251634cc5 = L.polyline(
                [[41.9012416, -87.6519615], [41.9013428, -87.6520707], [41.9013973, -87.6520786]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_bcbf99b21cfc3e6237d7c93b023ae875 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9b92033cec260512cdba53ad8ce4046e = $(`<div id=&quot;html_9b92033cec260512cdba53ad8ce4046e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10198867985 → 7165417934 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1115141181&quot; target=&quot;_blank&quot;>1115141181</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.52815593545572</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_bcbf99b21cfc3e6237d7c93b023ae875.setContent(html_9b92033cec260512cdba53ad8ce4046e);
            
        

        poly_line_49ba9e84b40312ee494a039251634cc5.bindPopup(popup_bcbf99b21cfc3e6237d7c93b023ae875)
        ;

        
    
    
            var poly_line_88ccbaff72e3e6fb918b28bfdf2d5905 = L.polyline(
                [[41.8978493, -87.6431359], [41.8978752, -87.6432365], [41.8985909, -87.6438337]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_bc852d865ea7a104e18d7acdcceadf4e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ca70594143f012b0487c6e8e3356a439 = $(`<div id=&quot;html_ca70594143f012b0487c6e8e3356a439&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10230482334 → 4131040101 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/186983204&quot; target=&quot;_blank&quot;>186983204</a>, <a href=&quot;https://www.openstreetmap.org/way/692898342&quot; target=&quot;_blank&quot;>692898342</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>102.49309480662804</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_bc852d865ea7a104e18d7acdcceadf4e.setContent(html_ca70594143f012b0487c6e8e3356a439);
            
        

        poly_line_88ccbaff72e3e6fb918b28bfdf2d5905.bindPopup(popup_bc852d865ea7a104e18d7acdcceadf4e)
        ;

        
    
    
            var poly_line_8c397bea420c90860fa9b6f70b3931c7 = L.polyline(
                [[41.8978493, -87.6431359], [41.8977904, -87.6431859], [41.8977453, -87.6432091], [41.8977081, -87.6432109], [41.8974193, -87.6431972], [41.8973585, -87.643152], [41.8973228, -87.6431036], [41.8973199, -87.6430713], [41.8973157, -87.6429461]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5c968b400a26fb82f4c356d98a226a98 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_af68f8d6c09b54ced154b492cc114a7e = $(`<div id=&quot;html_af68f8d6c09b54ced154b492cc114a7e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10230482334 → 10230482342 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1118587476&quot; target=&quot;_blank&quot;>1118587476</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>75.82163189243721</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_5c968b400a26fb82f4c356d98a226a98.setContent(html_af68f8d6c09b54ced154b492cc114a7e);
            
        

        poly_line_8c397bea420c90860fa9b6f70b3931c7.bindPopup(popup_5c968b400a26fb82f4c356d98a226a98)
        ;

        
    
    
            var poly_line_69b1ff38232b10850d84bcf2d23cd2ec = L.polyline(
                [[41.8973157, -87.6429461], [41.8971669, -87.64294]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2abaccb8619bd4f653a7b64320ec8c01 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_54ffdd4d7545cf9b8a70eeb90ffa70b3 = $(`<div id=&quot;html_54ffdd4d7545cf9b8a70eeb90ffa70b3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10230482342 → 10273225158 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1123330407&quot; target=&quot;_blank&quot;>1123330407</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>16.553529655927257</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_2abaccb8619bd4f653a7b64320ec8c01.setContent(html_54ffdd4d7545cf9b8a70eeb90ffa70b3);
            
        

        poly_line_69b1ff38232b10850d84bcf2d23cd2ec.bindPopup(popup_2abaccb8619bd4f653a7b64320ec8c01)
        ;

        
    
    
            var poly_line_8b5e283761e952d1d22bf55b5033ee30 = L.polyline(
                [[41.8973157, -87.6429461], [41.897787, -87.6429655], [41.8978398, -87.6429677]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5829baccc9439e6bb00df65ce3462148 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5bb6c722f795ef4f759c6ba24b6e9538 = $(`<div id=&quot;html_5bb6c722f795ef4f759c6ba24b6e9538&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10230482342 → 261184865 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/519888259&quot; target=&quot;_blank&quot;>519888259</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>58.30475881375859</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_5829baccc9439e6bb00df65ce3462148.setContent(html_5bb6c722f795ef4f759c6ba24b6e9538);
            
        

        poly_line_8b5e283761e952d1d22bf55b5033ee30.bindPopup(popup_5829baccc9439e6bb00df65ce3462148)
        ;

        
    
    
            var poly_line_3242063e092c35a4b93263c0a32288dd = L.polyline(
                [[41.8993207, -87.6566268], [41.8992718, -87.6566537], [41.8989378, -87.6566406], [41.898885, -87.6566142]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3448510e06ef1cea99887187df57092b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5617814aa2cae33bf7c254f9094d25a1 = $(`<div id=&quot;html_5617814aa2cae33bf7c254f9094d25a1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10255086915 → 10255086916 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1121161045&quot; target=&quot;_blank&quot;>1121161045</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>49.29507074243499</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_3448510e06ef1cea99887187df57092b.setContent(html_5617814aa2cae33bf7c254f9094d25a1);
            
        

        poly_line_3242063e092c35a4b93263c0a32288dd.bindPopup(popup_3448510e06ef1cea99887187df57092b)
        ;

        
    
    
            var poly_line_ffdb4860cc0d60f40d2cb050d6783221 = L.polyline(
                [[41.8993207, -87.6566268], [41.8998009, -87.6566331], [41.8998866, -87.6566342]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_bd3a4ccf0be83a4a11b91a3c32475ea2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_45087c9274dd1d3f7e60f8da27d4352c = $(`<div id=&quot;html_45087c9274dd1d3f7e60f8da27d4352c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10255086915 → 261185602 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1485859705&quot; target=&quot;_blank&quot;>1485859705</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>62.92827852570199</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_bd3a4ccf0be83a4a11b91a3c32475ea2.setContent(html_45087c9274dd1d3f7e60f8da27d4352c);
            
        

        poly_line_ffdb4860cc0d60f40d2cb050d6783221.bindPopup(popup_bd3a4ccf0be83a4a11b91a3c32475ea2)
        ;

        
    
    
            var poly_line_0aa7dade72b99b6894b20b5cd885df6e = L.polyline(
                [[41.898885, -87.6566142], [41.8988145, -87.6566125]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_305e100b30c262bb7b110946db4cfc5f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_437e4571a3a2a068446a159b1f866ae1 = $(`<div id=&quot;html_437e4571a3a2a068446a159b1f866ae1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10255086916 → 12187280167 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1124448280&quot; target=&quot;_blank&quot;>1124448280</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.840515969649683</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_305e100b30c262bb7b110946db4cfc5f.setContent(html_437e4571a3a2a068446a159b1f866ae1);
            
        

        poly_line_0aa7dade72b99b6894b20b5cd885df6e.bindPopup(popup_305e100b30c262bb7b110946db4cfc5f)
        ;

        
    
    
            var poly_line_fb1cff1eef5b522ef5f055b54b29b830 = L.polyline(
                [[41.898885, -87.6566142], [41.8989194, -87.6565898], [41.8992578, -87.6566029], [41.8993207, -87.6566268]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_93ca4507c478f05fb4f5eb7a0a32a3a8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_442c050f5794f3956452fc19d459af80 = $(`<div id=&quot;html_442c050f5794f3956452fc19d459af80&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10255086916 → 10255086915 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1121161046&quot; target=&quot;_blank&quot;>1121161046</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>49.23801689450974</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_93ca4507c478f05fb4f5eb7a0a32a3a8.setContent(html_442c050f5794f3956452fc19d459af80);
            
        

        poly_line_fb1cff1eef5b522ef5f055b54b29b830.bindPopup(popup_93ca4507c478f05fb4f5eb7a0a32a3a8)
        ;

        
    
    
            var poly_line_6175c0c627e64d42f4a9bf898ac7d6bb = L.polyline(
                [[41.9050515, -87.6440131], [41.9050396, -87.6449259]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e26f6bf0b4e27f0f3b01969ab556f531 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_488343dd0a6f057c480e976ba589e4b2 = $(`<div id=&quot;html_488343dd0a6f057c480e976ba589e4b2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10264704015 → 9879287207 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59586637&quot; target=&quot;_blank&quot;>59586637</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>75.55240151271745</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Scott Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_e26f6bf0b4e27f0f3b01969ab556f531.setContent(html_488343dd0a6f057c480e976ba589e4b2);
            
        

        poly_line_6175c0c627e64d42f4a9bf898ac7d6bb.bindPopup(popup_e26f6bf0b4e27f0f3b01969ab556f531)
        ;

        
    
    
            var poly_line_f2516363abaa0b1ef5d68d02d1f2f74f = L.polyline(
                [[41.9050515, -87.6440131], [41.9050601, -87.6433482], [41.9050612, -87.6432596]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9d8eb381213fb2d5751ee7064b2fd5f7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e4799ae75cd45fcf4bf7536d5b606a29 = $(`<div id=&quot;html_e4799ae75cd45fcf4bf7536d5b606a29&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10264704015 → 261184870 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59586637&quot; target=&quot;_blank&quot;>59586637</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>62.36690253335998</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Scott Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_9d8eb381213fb2d5751ee7064b2fd5f7.setContent(html_e4799ae75cd45fcf4bf7536d5b606a29);
            
        

        poly_line_f2516363abaa0b1ef5d68d02d1f2f74f.bindPopup(popup_9d8eb381213fb2d5751ee7064b2fd5f7)
        ;

        
    
    
            var poly_line_076dd2fd6275f8b67bac1fc4c1dc49b1 = L.polyline(
                [[41.9050515, -87.6440131], [41.9050996, -87.644015], [41.9053403, -87.6440246], [41.9053508, -87.6440512], [41.9053484, -87.6441817]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_dbeafbadb1f8ea463fa7b467db9ccad9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1dd6dade1a7c9f8beca724b60c1f4de6 = $(`<div id=&quot;html_1dd6dade1a7c9f8beca724b60c1f4de6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10264704015 → 10264704018 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1122266248&quot; target=&quot;_blank&quot;>1122266248</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>45.42209863957612</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_dbeafbadb1f8ea463fa7b467db9ccad9.setContent(html_1dd6dade1a7c9f8beca724b60c1f4de6);
            
        

        poly_line_076dd2fd6275f8b67bac1fc4c1dc49b1.bindPopup(popup_dbeafbadb1f8ea463fa7b467db9ccad9)
        ;

        
    
    
            var poly_line_bff1cabfc98d82443f359f680b78896a = L.polyline(
                [[41.9053484, -87.6441817], [41.9053508, -87.6440512], [41.9053403, -87.6440246], [41.9050996, -87.644015], [41.9050515, -87.6440131]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b82f49ffc0b5367f979db9b1b157e7dd = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c3bcaf01a4fdc48107d8a7b7133f2be1 = $(`<div id=&quot;html_c3bcaf01a4fdc48107d8a7b7133f2be1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10264704018 → 10264704015 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1122266248&quot; target=&quot;_blank&quot;>1122266248</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>45.42209863957612</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_b82f49ffc0b5367f979db9b1b157e7dd.setContent(html_c3bcaf01a4fdc48107d8a7b7133f2be1);
            
        

        poly_line_bff1cabfc98d82443f359f680b78896a.bindPopup(popup_b82f49ffc0b5367f979db9b1b157e7dd)
        ;

        
    
    
            var poly_line_bed5ef2c8250a91c792a982adc1bdb6a = L.polyline(
                [[41.9053191, -87.6473247], [41.9059962, -87.6473416]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_13c788e95e92a76fda1074ebc8d61990 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_23e8408d6767ff6a007e3515e562d7a6 = $(`<div id=&quot;html_23e8408d6767ff6a007e3515e562d7a6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10264704019 → 8410435300 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24099035&quot; target=&quot;_blank&quot;>24099035</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>75.30318005643684</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Burling Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_13c788e95e92a76fda1074ebc8d61990.setContent(html_23e8408d6767ff6a007e3515e562d7a6);
            
        

        poly_line_bed5ef2c8250a91c792a982adc1bdb6a.bindPopup(popup_13c788e95e92a76fda1074ebc8d61990)
        ;

        
    
    
            var poly_line_42480f5d21a705e972514a55a9819251 = L.polyline(
                [[41.9053191, -87.6473247], [41.9050851, -87.6473177], [41.9050111, -87.6473156]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_28350af32f6961182dfacd55503c9c56 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_29bbcb92c688ebd22d02412e9ea7c76b = $(`<div id=&quot;html_29bbcb92c688ebd22d02412e9ea7c76b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10264704019 → 353799889 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24099035&quot; target=&quot;_blank&quot;>24099035</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>34.25636880262152</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Burling Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_28350af32f6961182dfacd55503c9c56.setContent(html_29bbcb92c688ebd22d02412e9ea7c76b);
            
        

        poly_line_42480f5d21a705e972514a55a9819251.bindPopup(popup_28350af32f6961182dfacd55503c9c56)
        ;

        
    
    
            var poly_line_b4e18958128837bda38c42240ab20df4 = L.polyline(
                [[41.9053191, -87.6473247], [41.9053197, -87.64724], [41.9053222, -87.6468868]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9f3e4a78463e69709bbf0fcc7072643e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_07c3f4141c2c057f02647582874b6178 = $(`<div id=&quot;html_07c3f4141c2c057f02647582874b6178&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10264704019 → 10264704020 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1122266249&quot; target=&quot;_blank&quot;>1122266249</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>36.24088078377826</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_9f3e4a78463e69709bbf0fcc7072643e.setContent(html_07c3f4141c2c057f02647582874b6178);
            
        

        poly_line_b4e18958128837bda38c42240ab20df4.bindPopup(popup_9f3e4a78463e69709bbf0fcc7072643e)
        ;

        
    
    
            var poly_line_6c381895d0935953ed5a865909ad9674 = L.polyline(
                [[41.9053222, -87.6468868], [41.9053197, -87.64724], [41.9053191, -87.6473247]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_22850b59f4525b2909a70a0947d9f40a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_aed8c3736c4f4ba47f8559f20d862f47 = $(`<div id=&quot;html_aed8c3736c4f4ba47f8559f20d862f47&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10264704020 → 10264704019 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1122266249&quot; target=&quot;_blank&quot;>1122266249</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>36.24088078377826</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_22850b59f4525b2909a70a0947d9f40a.setContent(html_aed8c3736c4f4ba47f8559f20d862f47);
            
        

        poly_line_6c381895d0935953ed5a865909ad9674.bindPopup(popup_22850b59f4525b2909a70a0947d9f40a)
        ;

        
    
    
            var poly_line_a1a435174a173a8fceef0939c32f09de = L.polyline(
                [[41.8971669, -87.64294], [41.8973157, -87.6429461]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_27d1a4210e0676ba1d9e5a5a257c007b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_37f8daf15f3e8f2aee0a0baf5c13b26a = $(`<div id=&quot;html_37f8daf15f3e8f2aee0a0baf5c13b26a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10273225158 → 10230482342 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1123330407&quot; target=&quot;_blank&quot;>1123330407</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>16.553529655927257</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_27d1a4210e0676ba1d9e5a5a257c007b.setContent(html_37f8daf15f3e8f2aee0a0baf5c13b26a);
            
        

        poly_line_a1a435174a173a8fceef0939c32f09de.bindPopup(popup_27d1a4210e0676ba1d9e5a5a257c007b)
        ;

        
    
    
            var poly_line_58d4ec821a7b88fe2520ca06618207d8 = L.polyline(
                [[41.8971669, -87.64294], [41.8971692, -87.6428351], [41.89717, -87.6428092]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6561ab188bc9cb0c4b804d4fbcdd51e5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8c6654604a81651038e1a74af42d23fa = $(`<div id=&quot;html_8c6654604a81651038e1a74af42d23fa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10273225158 → 10273225160 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1123330405&quot; target=&quot;_blank&quot;>1123330405</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>10.831593863499947</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_6561ab188bc9cb0c4b804d4fbcdd51e5.setContent(html_8c6654604a81651038e1a74af42d23fa);
            
        

        poly_line_58d4ec821a7b88fe2520ca06618207d8.bindPopup(popup_6561ab188bc9cb0c4b804d4fbcdd51e5)
        ;

        
    
    
            var poly_line_231d3d78910ab131cc9bcb708a8c20df = L.polyline(
                [[41.89717, -87.6428092], [41.8971692, -87.6428351], [41.8971669, -87.64294]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d9deb317d6118a6ff507b5268764034c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4d65693837ef148b6ad36a8dea9015df = $(`<div id=&quot;html_4d65693837ef148b6ad36a8dea9015df&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10273225160 → 10273225158 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1123330405&quot; target=&quot;_blank&quot;>1123330405</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>10.831593863499947</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_d9deb317d6118a6ff507b5268764034c.setContent(html_4d65693837ef148b6ad36a8dea9015df);
            
        

        poly_line_231d3d78910ab131cc9bcb708a8c20df.bindPopup(popup_d9deb317d6118a6ff507b5268764034c)
        ;

        
    
    
            var poly_line_0492ae0a5535fc99b1c82eb077dfcf8b = L.polyline(
                [[41.8987223, -87.6566103], [41.8988145, -87.6566125]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d0b0c6a74314c251a3a04f35afa853f1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_50abeb15ebb9036ac0902bb01da83688 = $(`<div id=&quot;html_50abeb15ebb9036ac0902bb01da83688&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10282528013 → 12187280167 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1124448280&quot; target=&quot;_blank&quot;>1124448280</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>10.253803540420488</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_d0b0c6a74314c251a3a04f35afa853f1.setContent(html_50abeb15ebb9036ac0902bb01da83688);
            
        

        poly_line_0492ae0a5535fc99b1c82eb077dfcf8b.bindPopup(popup_d0b0c6a74314c251a3a04f35afa853f1)
        ;

        
    
    
            var poly_line_aaa5b3735fb8c98fd6109bd1782b56c1 = L.polyline(
                [[41.8987223, -87.6566103], [41.8985142, -87.6566016]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a7291b740eea0a0e61f3691c9fc1af7e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e491d43f8010d6c30be68e98be9edf3b = $(`<div id=&quot;html_e491d43f8010d6c30be68e98be9edf3b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10282528013 → 9687430176 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1124448281&quot; target=&quot;_blank&quot;>1124448281</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>23.150897625233373</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_a7291b740eea0a0e61f3691c9fc1af7e.setContent(html_e491d43f8010d6c30be68e98be9edf3b);
            
        

        poly_line_aaa5b3735fb8c98fd6109bd1782b56c1.bindPopup(popup_a7291b740eea0a0e61f3691c9fc1af7e)
        ;

        
    
    
            var poly_line_c2db9536209f8e3bf7e02939dad5bb44 = L.polyline(
                [[41.8996405, -87.6607371], [41.8994426, -87.6604436], [41.8985401, -87.6590379], [41.8983723, -87.6587764], [41.898273, -87.6585514]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f0f3b5135ac74410add1656b637e5688 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d019f863f69e8125f40b8a803ae61dfb = $(`<div id=&quot;html_d019f863f69e8125f40b8a803ae61dfb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10282879324 → 261104757 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1124489115&quot; target=&quot;_blank&quot;>1124489115</a>, <a href=&quot;https://www.openstreetmap.org/way/24229909&quot; target=&quot;_blank&quot;>24229909</a>, <a href=&quot;https://www.openstreetmap.org/way/977115566&quot; target=&quot;_blank&quot;>977115566</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>bridge</td><td style='padding:2px 6px;'>yes</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>236.64620894852945</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Milwaukee Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_f0f3b5135ac74410add1656b637e5688.setContent(html_d019f863f69e8125f40b8a803ae61dfb);
            
        

        poly_line_c2db9536209f8e3bf7e02939dad5bb44.bindPopup(popup_f0f3b5135ac74410add1656b637e5688)
        ;

        
    
    
            var poly_line_63128bfce969b0799961c88ada64f530 = L.polyline(
                [[41.8996405, -87.6607371], [41.8995375, -87.6606347], [41.8994828, -87.660568], [41.8994198, -87.6604715], [41.8985171, -87.6590648], [41.8983626, -87.6588215], [41.8982707, -87.6586833], [41.8981737, -87.6585374], [41.8981089, -87.6584378]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_382763ec2feda799b451c4a074250a20 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_59e823dc9c4444bc3b5cb835348c97c1 = $(`<div id=&quot;html_59e823dc9c4444bc3b5cb835348c97c1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10282879324 → 12289051309 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1185229286&quot; target=&quot;_blank&quot;>1185229286</a>, <a href=&quot;https://www.openstreetmap.org/way/1328260263&quot; target=&quot;_blank&quot;>1328260263</a>, <a href=&quot;https://www.openstreetmap.org/way/1185160360&quot; target=&quot;_blank&quot;>1185160360</a>, <a href=&quot;https://www.openstreetmap.org/way/1185160361&quot; target=&quot;_blank&quot;>1185160361</a>, <a href=&quot;https://www.openstreetmap.org/way/1328260255&quot; target=&quot;_blank&quot;>1328260255</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>bridge</td><td style='padding:2px 6px;'>yes</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>255.7543846103168</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>Milwaukee Avenue Bikeway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_382763ec2feda799b451c4a074250a20.setContent(html_59e823dc9c4444bc3b5cb835348c97c1);
            
        

        poly_line_63128bfce969b0799961c88ada64f530.bindPopup(popup_382763ec2feda799b451c4a074250a20)
        ;

        
    
    
            var poly_line_baea25e04213580d6edebe2f0b3803dd = L.polyline(
                [[41.8971327, -87.6538051], [41.8972894, -87.6536553], [41.8973654, -87.6535809]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_df94f8bdff99fc703f3c6bc442ddf5e6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5eb120cd71a8966d6b39493448c53cd2 = $(`<div id=&quot;html_5eb120cd71a8966d6b39493448c53cd2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10556426050 → 11270578643 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59586273&quot; target=&quot;_blank&quot;>59586273</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>31.841645912109918</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Ogden Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_df94f8bdff99fc703f3c6bc442ddf5e6.setContent(html_5eb120cd71a8966d6b39493448c53cd2);
            
        

        poly_line_baea25e04213580d6edebe2f0b3803dd.bindPopup(popup_df94f8bdff99fc703f3c6bc442ddf5e6)
        ;

        
    
    
            var poly_line_8ac6d78cfbd0f70beec5c46b85c43855 = L.polyline(
                [[41.9059473, -87.6489739], [41.9058413, -87.648933]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_46a3ce9b0bf2827686c9c5d6ad719ae2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3490011d8792dea3e0e716ea6b5f34d3 = $(`<div id=&quot;html_3490011d8792dea3e0e716ea6b5f34d3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10660982491 → 2387206226 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230189126&quot; target=&quot;_blank&quot;>230189126</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>12.263040861521514</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_46a3ce9b0bf2827686c9c5d6ad719ae2.setContent(html_3490011d8792dea3e0e716ea6b5f34d3);
            
        

        poly_line_8ac6d78cfbd0f70beec5c46b85c43855.bindPopup(popup_46a3ce9b0bf2827686c9c5d6ad719ae2)
        ;

        
    
    
            var poly_line_f93097ad0917eefdf8c2b745e97f6b48 = L.polyline(
                [[41.9059473, -87.6489739], [41.9062952, -87.649108], [41.9063724, -87.6491377]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d5da9ea3c30e9baa00b0cd2eef0a0c9d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4e10f5d759e5bdf0d1dc808ebb20c7df = $(`<div id=&quot;html_4e10f5d759e5bdf0d1dc808ebb20c7df&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10660982491 → 2387195200 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230189126&quot; target=&quot;_blank&quot;>230189126</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>49.174283650747256</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_d5da9ea3c30e9baa00b0cd2eef0a0c9d.setContent(html_4e10f5d759e5bdf0d1dc808ebb20c7df);
            
        

        poly_line_f93097ad0917eefdf8c2b745e97f6b48.bindPopup(popup_d5da9ea3c30e9baa00b0cd2eef0a0c9d)
        ;

        
    
    
            var poly_line_7866572f97a0266e6f56b00e6c2beb77 = L.polyline(
                [[41.9059473, -87.6489739], [41.9058924, -87.6490824], [41.9056277, -87.6496262], [41.9055905, -87.6497058]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_09fe53432dfe90889de2e6f59c545831 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_71a58e009bab1320b9d86050b75f23a1 = $(`<div id=&quot;html_71a58e009bab1320b9d86050b75f23a1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10660982491 → 2387206222 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230189750&quot; target=&quot;_blank&quot;>230189750</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>72.40956751660073</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_09fe53432dfe90889de2e6f59c545831.setContent(html_71a58e009bab1320b9d86050b75f23a1);
            
        

        poly_line_7866572f97a0266e6f56b00e6c2beb77.bindPopup(popup_09fe53432dfe90889de2e6f59c545831)
        ;

        
    
    
            var poly_line_dc545bbf20cfb454f1229e3cf9391a5c = L.polyline(
                [[41.9085512, -87.6501615], [41.9085484, -87.6503895]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_725c7a9644c3edb47b1911abf0697fba = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_09c01445a9408770efe0a46d8a35030e = $(`<div id=&quot;html_09c01445a9408770efe0a46d8a35030e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10748232272 → 10748232280 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24085262&quot; target=&quot;_blank&quot;>24085262</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.870184874342048</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Blackhawk Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_725c7a9644c3edb47b1911abf0697fba.setContent(html_09c01445a9408770efe0a46d8a35030e);
            
        

        poly_line_dc545bbf20cfb454f1229e3cf9391a5c.bindPopup(popup_725c7a9644c3edb47b1911abf0697fba)
        ;

        
    
    
            var poly_line_a8a548699fbe3772a8b148177d18f4b0 = L.polyline(
                [[41.9085512, -87.6501615], [41.9085534, -87.6499788]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0433b77d1a84c8a7e3283f9b18b518ba = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_db6b32217433e83bfa9ff0467dc02ee7 = $(`<div id=&quot;html_db6b32217433e83bfa9ff0467dc02ee7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10748232272 → 10748232282 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24085262&quot; target=&quot;_blank&quot;>24085262</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>15.1208971315249</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Blackhawk Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_0433b77d1a84c8a7e3283f9b18b518ba.setContent(html_db6b32217433e83bfa9ff0467dc02ee7);
            
        

        poly_line_a8a548699fbe3772a8b148177d18f4b0.bindPopup(popup_0433b77d1a84c8a7e3283f9b18b518ba)
        ;

        
    
    
            var poly_line_a787cdeafbdc9f7cd26528b01e9758f7 = L.polyline(
                [[41.9085512, -87.6501615], [41.9086288, -87.6501611], [41.9086978, -87.6501591]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ce78a887ffaba5fb78b7313adcd76482 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_24ab43dcec28a6a7eace5d320d006fd1 = $(`<div id=&quot;html_24ab43dcec28a6a7eace5d320d006fd1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10748232272 → 10748232274 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1155771126&quot; target=&quot;_blank&quot;>1155771126</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>16.303047638012114</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_ce78a887ffaba5fb78b7313adcd76482.setContent(html_24ab43dcec28a6a7eace5d320d006fd1);
            
        

        poly_line_a787cdeafbdc9f7cd26528b01e9758f7.bindPopup(popup_ce78a887ffaba5fb78b7313adcd76482)
        ;

        
    
    
            var poly_line_3e42442e84deafaa62f655e8b85af7e1 = L.polyline(
                [[41.9086978, -87.6501591], [41.9087254, -87.6501934], [41.9087336, -87.6502476], [41.9087316, -87.6503291], [41.9087183, -87.6503608], [41.9087017, -87.6503741], [41.9086572, -87.650387], [41.9086261, -87.6503882], [41.9085484, -87.6503895]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_93ef2df57674fce8e68be53847d9afc8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fb18ac1ba4173bddf724bfd17e3759e9 = $(`<div id=&quot;html_fb18ac1ba4173bddf724bfd17e3759e9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10748232274 → 10748232280 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1155771128&quot; target=&quot;_blank&quot;>1155771128</a>, <a href=&quot;https://www.openstreetmap.org/way/1155771129&quot; target=&quot;_blank&quot;>1155771129</a>, <a href=&quot;https://www.openstreetmap.org/way/1155771126&quot; target=&quot;_blank&quot;>1155771126</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>37.827869277099076</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_93ef2df57674fce8e68be53847d9afc8.setContent(html_fb18ac1ba4173bddf724bfd17e3759e9);
            
        

        poly_line_3e42442e84deafaa62f655e8b85af7e1.bindPopup(popup_93ef2df57674fce8e68be53847d9afc8)
        ;

        
    
    
            var poly_line_960edfcf20b545ae07d12ec8baa20406 = L.polyline(
                [[41.9086978, -87.6501591], [41.9086986, -87.6500843], [41.9086999, -87.6499814], [41.9086623, -87.6499808], [41.9086309, -87.6499803], [41.9085534, -87.6499788]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4191c2578130bfb8f16d8475ab67e077 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f5ac91509554357d7e02520cdf406120 = $(`<div id=&quot;html_f5ac91509554357d7e02520cdf406120&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10748232274 → 10748232282 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1155771130&quot; target=&quot;_blank&quot;>1155771130</a>, <a href=&quot;https://www.openstreetmap.org/way/1155771131&quot; target=&quot;_blank&quot;>1155771131</a>, <a href=&quot;https://www.openstreetmap.org/way/1155771127&quot; target=&quot;_blank&quot;>1155771127</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>30.998500639454527</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_4191c2578130bfb8f16d8475ab67e077.setContent(html_f5ac91509554357d7e02520cdf406120);
            
        

        poly_line_960edfcf20b545ae07d12ec8baa20406.bindPopup(popup_4191c2578130bfb8f16d8475ab67e077)
        ;

        
    
    
            var poly_line_f8452f5ebc6cca6547c86274bc023c58 = L.polyline(
                [[41.9085484, -87.6503895], [41.9085512, -87.6501615]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ed9ac11e61a03695b6c114b4d47a20e7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_30dad8139ca1df9ae79b3a417db22231 = $(`<div id=&quot;html_30dad8139ca1df9ae79b3a417db22231&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10748232280 → 10748232272 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24085262&quot; target=&quot;_blank&quot;>24085262</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.870184874342048</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Blackhawk Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_ed9ac11e61a03695b6c114b4d47a20e7.setContent(html_30dad8139ca1df9ae79b3a417db22231);
            
        

        poly_line_f8452f5ebc6cca6547c86274bc023c58.bindPopup(popup_ed9ac11e61a03695b6c114b4d47a20e7)
        ;

        
    
    
            var poly_line_98f2ea1f07fc68a4605e9fafa511af92 = L.polyline(
                [[41.9085484, -87.6503895], [41.9085418, -87.6509393], [41.9085405, -87.6510434]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d43547faecd82014b16155aa9d6431c8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_05053023bc74b7d7edfa4bb7ec8a5693 = $(`<div id=&quot;html_05053023bc74b7d7edfa4bb7ec8a5693&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10748232280 → 261193488 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24085262&quot; target=&quot;_blank&quot;>24085262</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>54.119127999002714</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Blackhawk Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_d43547faecd82014b16155aa9d6431c8.setContent(html_05053023bc74b7d7edfa4bb7ec8a5693);
            
        

        poly_line_98f2ea1f07fc68a4605e9fafa511af92.bindPopup(popup_d43547faecd82014b16155aa9d6431c8)
        ;

        
    
    
            var poly_line_418675a3b0f0ab57c5523b30359d5a27 = L.polyline(
                [[41.9085534, -87.6499788], [41.9085512, -87.6501615]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0059a2536d9577bf5a64225b2d632a80 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_93b4250eed1d6b8e022160134b8c5c95 = $(`<div id=&quot;html_93b4250eed1d6b8e022160134b8c5c95&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10748232282 → 10748232272 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24085262&quot; target=&quot;_blank&quot;>24085262</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>15.1208971315249</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Blackhawk Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_0059a2536d9577bf5a64225b2d632a80.setContent(html_93b4250eed1d6b8e022160134b8c5c95);
            
        

        poly_line_418675a3b0f0ab57c5523b30359d5a27.bindPopup(popup_0059a2536d9577bf5a64225b2d632a80)
        ;

        
    
    
            var poly_line_39e57ee72a56c98fd788242716b0b7c7 = L.polyline(
                [[41.9085534, -87.6499788], [41.9085587, -87.6495463], [41.9085599, -87.6494436]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_44c2974e2a31914c9df7a03eb3ea0d74 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f8474e595cd7d1a6e22e2f9d26694a1f = $(`<div id=&quot;html_f8474e595cd7d1a6e22e2f9d26694a1f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10748232282 → 261193487 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24085262&quot; target=&quot;_blank&quot;>24085262</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>44.295140798045495</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Blackhawk Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_44c2974e2a31914c9df7a03eb3ea0d74.setContent(html_f8474e595cd7d1a6e22e2f9d26694a1f);
            
        

        poly_line_39e57ee72a56c98fd788242716b0b7c7.bindPopup(popup_44c2974e2a31914c9df7a03eb3ea0d74)
        ;

        
    
    
            var poly_line_04c574bf0484d52a71cbde5efcf2a3bc = L.polyline(
                [[41.9085534, -87.6499788], [41.9086309, -87.6499803], [41.9086623, -87.6499808], [41.9086999, -87.6499814], [41.9086986, -87.6500843], [41.9086978, -87.6501591]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_258e688694921d582823df064cbe9878 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_53ad31b2870141470bf3edbdcfaca16c = $(`<div id=&quot;html_53ad31b2870141470bf3edbdcfaca16c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10748232282 → 10748232274 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1155771130&quot; target=&quot;_blank&quot;>1155771130</a>, <a href=&quot;https://www.openstreetmap.org/way/1155771131&quot; target=&quot;_blank&quot;>1155771131</a>, <a href=&quot;https://www.openstreetmap.org/way/1155771127&quot; target=&quot;_blank&quot;>1155771127</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>30.998500639454527</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_258e688694921d582823df064cbe9878.setContent(html_53ad31b2870141470bf3edbdcfaca16c);
            
        

        poly_line_04c574bf0484d52a71cbde5efcf2a3bc.bindPopup(popup_258e688694921d582823df064cbe9878)
        ;

        
    
    
            var poly_line_23702086cf98e80973c4b80b41c44bb0 = L.polyline(
                [[41.908303, -87.6456685], [41.9084512, -87.6455657], [41.9086533, -87.6454256]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d74ecb8e9d63cc232b734d2f77ac8f61 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_87c57a5531dfae39f14b7977d852ea6a = $(`<div id=&quot;html_87c57a5531dfae39f14b7977d852ea6a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10801700709 → 2387185359 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187840&quot; target=&quot;_blank&quot;>230187840</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>43.83225311304096</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_d74ecb8e9d63cc232b734d2f77ac8f61.setContent(html_87c57a5531dfae39f14b7977d852ea6a);
            
        

        poly_line_23702086cf98e80973c4b80b41c44bb0.bindPopup(popup_d74ecb8e9d63cc232b734d2f77ac8f61)
        ;

        
    
    
            var poly_line_ce0945f265aac2ca61f1ae84a9dbf4af = L.polyline(
                [[41.9009775, -87.6444272], [41.9011825, -87.6446018]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0d125e6fbab3c68da1979ebc3262fce2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ca55182846afe09bf0b64556471f1878 = $(`<div id=&quot;html_ca55182846afe09bf0b64556471f1878&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10866693144 → 2111444788 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24080413&quot; target=&quot;_blank&quot;>24080413</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>26.989316337371857</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Crosby Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_0d125e6fbab3c68da1979ebc3262fce2.setContent(html_ca55182846afe09bf0b64556471f1878);
            
        

        poly_line_ce0945f265aac2ca61f1ae84a9dbf4af.bindPopup(popup_0d125e6fbab3c68da1979ebc3262fce2)
        ;

        
    
    
            var poly_line_5fd6bb5f366644fe9b0d12177d91210c = L.polyline(
                [[41.9009775, -87.6444272], [41.9010344, -87.644313], [41.901176, -87.6439954], [41.9012669, -87.6439914], [41.9012609, -87.644412], [41.9012345, -87.6444817], [41.9011825, -87.6446018]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_81f251da9bd8214f4dac5a2d3861d204 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d4a7a4312b9f6338f3020dedb61a6810 = $(`<div id=&quot;html_d4a7a4312b9f6338f3020dedb61a6810&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10866693144 → 2111444788 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/201195897&quot; target=&quot;_blank&quot;>201195897</a>, <a href=&quot;https://www.openstreetmap.org/way/1168444258&quot; target=&quot;_blank&quot;>1168444258</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>104.91496158949761</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_81f251da9bd8214f4dac5a2d3861d204.setContent(html_d4a7a4312b9f6338f3020dedb61a6810);
            
        

        poly_line_5fd6bb5f366644fe9b0d12177d91210c.bindPopup(popup_81f251da9bd8214f4dac5a2d3861d204)
        ;

        
    
    
            var poly_line_5fda4859e18e084afac78922ae30346c = L.polyline(
                [[41.9009775, -87.6444272], [41.9008101, -87.6442845], [41.900324, -87.6438739], [41.9002962, -87.6438485], [41.9002316, -87.6437931]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7d9c2681ca9a9acc3c689ea0c8d75c95 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_59b9f0e1494d441cac48cd084d9c62f6 = $(`<div id=&quot;html_59b9f0e1494d441cac48cd084d9c62f6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10866693144 → 261167714 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24080413&quot; target=&quot;_blank&quot;>24080413</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>98.1515893830989</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Crosby Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_7d9c2681ca9a9acc3c689ea0c8d75c95.setContent(html_59b9f0e1494d441cac48cd084d9c62f6);
            
        

        poly_line_5fda4859e18e084afac78922ae30346c.bindPopup(popup_7d9c2681ca9a9acc3c689ea0c8d75c95)
        ;

        
    
    
            var poly_line_360cb700d696d221f5559f289310f7c5 = L.polyline(
                [[41.9014681, -87.6435813], [41.9014653, -87.6438399]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a61e85cb7deccaa7f19e62777266f451 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b66e524cc885d0cd1e62dc3febdbf2f5 = $(`<div id=&quot;html_b66e524cc885d0cd1e62dc3febdbf2f5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10866693147 → 6093478457 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/30954124&quot; target=&quot;_blank&quot;>30954124</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.40448764555389</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Hobbie Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_a61e85cb7deccaa7f19e62777266f451.setContent(html_b66e524cc885d0cd1e62dc3febdbf2f5);
            
        

        poly_line_360cb700d696d221f5559f289310f7c5.bindPopup(popup_a61e85cb7deccaa7f19e62777266f451)
        ;

        
    
    
            var poly_line_2d4192f8c67ae4374754b085f26c3175 = L.polyline(
                [[41.9014681, -87.6435813], [41.9014715, -87.6432709], [41.9014724, -87.64324], [41.9014743, -87.6431292]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f030f5588fcfe9d975623bd522f4a631 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_167780313c0a7251b7ac664e3b7e03ee = $(`<div id=&quot;html_167780313c0a7251b7ac664e3b7e03ee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10866693147 → 261184867 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/30954124&quot; target=&quot;_blank&quot;>30954124</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>37.423817802395426</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Hobbie Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_f030f5588fcfe9d975623bd522f4a631.setContent(html_167780313c0a7251b7ac664e3b7e03ee);
            
        

        poly_line_2d4192f8c67ae4374754b085f26c3175.bindPopup(popup_f030f5588fcfe9d975623bd522f4a631)
        ;

        
    
    
            var poly_line_ba023071d4fe26be30eb3b02a5e9535d = L.polyline(
                [[41.9014681, -87.6435813], [41.9013922, -87.6435763], [41.9013286, -87.6435732], [41.9013322, -87.6432792], [41.9013322, -87.6432405], [41.9013323, -87.6431237]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_26e6ff4c84843c103afe9cacbf0ec0e2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_acbe9a1126e8feb83d21ae94cad0d61b = $(`<div id=&quot;html_acbe9a1126e8feb83d21ae94cad0d61b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10866693147 → 10866693152 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1168444259&quot; target=&quot;_blank&quot;>1168444259</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>52.73134998381452</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_26e6ff4c84843c103afe9cacbf0ec0e2.setContent(html_acbe9a1126e8feb83d21ae94cad0d61b);
            
        

        poly_line_ba023071d4fe26be30eb3b02a5e9535d.bindPopup(popup_26e6ff4c84843c103afe9cacbf0ec0e2)
        ;

        
    
    
            var poly_line_66fbc1a05f62e488b660828c8155c295 = L.polyline(
                [[41.9013323, -87.6431237], [41.9012146, -87.6431191]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c958b60bbedc6c7d14dd1cdbb5067f20 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a6f7e33b217f192f3a65eb04997af85b = $(`<div id=&quot;html_a6f7e33b217f192f3a65eb04997af85b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10866693152 → 8410482740 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59208011&quot; target=&quot;_blank&quot;>59208011</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>13.093197341852008</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_c958b60bbedc6c7d14dd1cdbb5067f20.setContent(html_a6f7e33b217f192f3a65eb04997af85b);
            
        

        poly_line_66fbc1a05f62e488b660828c8155c295.bindPopup(popup_c958b60bbedc6c7d14dd1cdbb5067f20)
        ;

        
    
    
            var poly_line_1db3ed87a6adfc9f7a06fe641dc1e808 = L.polyline(
                [[41.9013323, -87.6431237], [41.901373, -87.6431253], [41.901398, -87.6431256], [41.9014743, -87.6431292]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a14b1f568decc4473a2deb78a9de6994 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d2e6177d544f7a734c4ef279cf7ea47a = $(`<div id=&quot;html_d2e6177d544f7a734c4ef279cf7ea47a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10866693152 → 261184867 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59208011&quot; target=&quot;_blank&quot;>59208011</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>15.796979515572616</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_a14b1f568decc4473a2deb78a9de6994.setContent(html_d2e6177d544f7a734c4ef279cf7ea47a);
            
        

        poly_line_1db3ed87a6adfc9f7a06fe641dc1e808.bindPopup(popup_a14b1f568decc4473a2deb78a9de6994)
        ;

        
    
    
            var poly_line_c15639813ce9dffc6e9598dc2660cfb3 = L.polyline(
                [[41.9013323, -87.6431237], [41.9013322, -87.6432405], [41.9013322, -87.6432792], [41.9013286, -87.6435732], [41.9013922, -87.6435763], [41.9014681, -87.6435813]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4167317df9f2e34bfe38e4534972ba05 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6f8caa94ded6f2fdafa6ece322f9cd04 = $(`<div id=&quot;html_6f8caa94ded6f2fdafa6ece322f9cd04&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10866693152 → 10866693147 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1168444259&quot; target=&quot;_blank&quot;>1168444259</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>52.73134998381452</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_4167317df9f2e34bfe38e4534972ba05.setContent(html_6f8caa94ded6f2fdafa6ece322f9cd04);
            
        

        poly_line_c15639813ce9dffc6e9598dc2660cfb3.bindPopup(popup_4167317df9f2e34bfe38e4534972ba05)
        ;

        
    
    
            var poly_line_0d013195717447f1aa3b253724464901 = L.polyline(
                [[41.8969873, -87.6557604], [41.8968708, -87.6555871], [41.8968001, -87.6554818]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2433cbb0fa2779eea0adb26e70bf1c56 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_54ea7b03a1869b4777f265c010198129 = $(`<div id=&quot;html_54ea7b03a1869b4777f265c010198129&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10885523393 → 8595362338 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/401113948&quot; target=&quot;_blank&quot;>401113948</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>31.06472145841466</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_2433cbb0fa2779eea0adb26e70bf1c56.setContent(html_54ea7b03a1869b4777f265c010198129);
            
        

        poly_line_0d013195717447f1aa3b253724464901.bindPopup(popup_2433cbb0fa2779eea0adb26e70bf1c56)
        ;

        
    
    
            var poly_line_59bac776fff60247a8e8c850b002ea53 = L.polyline(
                [[41.8969873, -87.6557604], [41.8971387, -87.6559855], [41.8972421, -87.6561354], [41.8972681, -87.6561731], [41.8973127, -87.6562378]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_16eafa6de15aebec8fe8d9ab0e4e59ab = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_33dcb0d623362d2fd5a41d3ceb0bdbbe = $(`<div id=&quot;html_33dcb0d623362d2fd5a41d3ceb0bdbbe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10885523393 → 4035706295 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/401113948&quot; target=&quot;_blank&quot;>401113948</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>53.57802482547006</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_16eafa6de15aebec8fe8d9ab0e4e59ab.setContent(html_33dcb0d623362d2fd5a41d3ceb0bdbbe);
            
        

        poly_line_59bac776fff60247a8e8c850b002ea53.bindPopup(popup_16eafa6de15aebec8fe8d9ab0e4e59ab)
        ;

        
    
    
            var poly_line_d5e5255ca4d45bbe8a17fc9a7a174c78 = L.polyline(
                [[41.8969873, -87.6557604], [41.8972536, -87.6557672], [41.8973221, -87.655769]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1e0a8dddba7d58e8e64a102900283fcc = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b0b9e46de2303cf0389c6d65d294c0bc = $(`<div id=&quot;html_b0b9e46de2303cf0389c6d65d294c0bc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10885523393 → 10885523395 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1171454912&quot; target=&quot;_blank&quot;>1171454912</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>37.234919130396136</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_1e0a8dddba7d58e8e64a102900283fcc.setContent(html_b0b9e46de2303cf0389c6d65d294c0bc);
            
        

        poly_line_d5e5255ca4d45bbe8a17fc9a7a174c78.bindPopup(popup_1e0a8dddba7d58e8e64a102900283fcc)
        ;

        
    
    
            var poly_line_144a2504596b231d27fe3aaba45cc7d6 = L.polyline(
                [[41.8973221, -87.655769], [41.8973127, -87.6562378]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7278e0e379b6ca8c808ae977ca66a499 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4b9e1469bc3c5df74851b0800db5245e = $(`<div id=&quot;html_4b9e1469bc3c5df74851b0800db5245e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10885523395 → 4035706295 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24070830&quot; target=&quot;_blank&quot;>24070830</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>38.81536793652473</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Fry Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_7278e0e379b6ca8c808ae977ca66a499.setContent(html_4b9e1469bc3c5df74851b0800db5245e);
            
        

        poly_line_144a2504596b231d27fe3aaba45cc7d6.bindPopup(popup_7278e0e379b6ca8c808ae977ca66a499)
        ;

        
    
    
            var poly_line_4dbc8010135ddbc29b8515b5af12632a = L.polyline(
                [[41.8973221, -87.655769], [41.8973302, -87.6553639], [41.8973321, -87.6552577]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2e55f664b39e1ae9e016300320dafd4a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b3566ce9be8832a7e889f093d1cc4397 = $(`<div id=&quot;html_b3566ce9be8832a7e889f093d1cc4397&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10885523395 → 261116828 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24070830&quot; target=&quot;_blank&quot;>24070830</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>42.33352812208809</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Fry Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_2e55f664b39e1ae9e016300320dafd4a.setContent(html_b3566ce9be8832a7e889f093d1cc4397);
            
        

        poly_line_4dbc8010135ddbc29b8515b5af12632a.bindPopup(popup_2e55f664b39e1ae9e016300320dafd4a)
        ;

        
    
    
            var poly_line_2721cbc3a2032a026a8ee011204bd644 = L.polyline(
                [[41.8973221, -87.655769], [41.8972536, -87.6557672], [41.8969873, -87.6557604]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_21a36df2410da894e247c8cd215890b4 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c26a6b0c7d6a55d248e3307feccc362e = $(`<div id=&quot;html_c26a6b0c7d6a55d248e3307feccc362e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10885523395 → 10885523393 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1171454912&quot; target=&quot;_blank&quot;>1171454912</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>37.234919130396136</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_21a36df2410da894e247c8cd215890b4.setContent(html_c26a6b0c7d6a55d248e3307feccc362e);
            
        

        poly_line_2721cbc3a2032a026a8ee011204bd644.bindPopup(popup_21a36df2410da894e247c8cd215890b4)
        ;

        
    
    
            var poly_line_11f94ca7a5d41f46436534db7aba09c5 = L.polyline(
                [[41.9107481, -87.6458406], [41.9107486, -87.6456845]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_cff522d445aa85dc6865552698a42cfa = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d43f69e3bf0bad5bd758bcbe7009509d = $(`<div id=&quot;html_d43f69e3bf0bad5bd758bcbe7009509d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10928830359 → 10928830360 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1176237660&quot; target=&quot;_blank&quot;>1176237660</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>12.917371634419622</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_cff522d445aa85dc6865552698a42cfa.setContent(html_d43f69e3bf0bad5bd758bcbe7009509d);
            
        

        poly_line_11f94ca7a5d41f46436534db7aba09c5.bindPopup(popup_cff522d445aa85dc6865552698a42cfa)
        ;

        
    
    
            var poly_line_e2e64096db0eaee061e33940fcc50bbb = L.polyline(
                [[41.9107481, -87.6458406], [41.9108784, -87.6458479], [41.9109291, -87.6458503]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_96b473fb0b68d6d80a52dd991960cd5f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_32ed38f26a3e084776b2fd19728bbdcf = $(`<div id=&quot;html_32ed38f26a3e084776b2fd19728bbdcf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10928830359 → 12195807205 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230189127&quot; target=&quot;_blank&quot;>230189127</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.14239440667135</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_96b473fb0b68d6d80a52dd991960cd5f.setContent(html_32ed38f26a3e084776b2fd19728bbdcf);
            
        

        poly_line_e2e64096db0eaee061e33940fcc50bbb.bindPopup(popup_96b473fb0b68d6d80a52dd991960cd5f)
        ;

        
    
    
            var poly_line_b4b222f2371726f7b75af935e1dacb6b = L.polyline(
                [[41.9107481, -87.6458406], [41.9105395, -87.6458288], [41.9105048, -87.6458369]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b01447c19bae2ad62a6c5639d5ef805d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e3c748495c078a863dd05f5d26408f8c = $(`<div id=&quot;html_e3c748495c078a863dd05f5d26408f8c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10928830359 → 2387195215 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230189127&quot; target=&quot;_blank&quot;>230189127</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>27.132093514492926</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_b01447c19bae2ad62a6c5639d5ef805d.setContent(html_e3c748495c078a863dd05f5d26408f8c);
            
        

        poly_line_b4b222f2371726f7b75af935e1dacb6b.bindPopup(popup_b01447c19bae2ad62a6c5639d5ef805d)
        ;

        
    
    
            var poly_line_2e44157059941cd856ed3b8fa1b46f72 = L.polyline(
                [[41.9107486, -87.6456845], [41.9107481, -87.6458406]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fd9bcabc760b08038e3c3a35d5149b2c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_cd5b995936aaf5d5aaf770b0b0fd2ef0 = $(`<div id=&quot;html_cd5b995936aaf5d5aaf770b0b0fd2ef0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10928830360 → 10928830359 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1176237660&quot; target=&quot;_blank&quot;>1176237660</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>12.917371634419622</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_fd9bcabc760b08038e3c3a35d5149b2c.setContent(html_cd5b995936aaf5d5aaf770b0b0fd2ef0);
            
        

        poly_line_2e44157059941cd856ed3b8fa1b46f72.bindPopup(popup_fd9bcabc760b08038e3c3a35d5149b2c)
        ;

        
    
    
            var poly_line_969aa968916689bd5bdd48d95fe692dd = L.polyline(
                [[41.9105072, -87.6456535], [41.9105048, -87.6458369]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_508aaad6d28bea856f49b2970789600e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_719807bd43b97da69d46d0c8aa06c8b4 = $(`<div id=&quot;html_719807bd43b97da69d46d0c8aa06c8b4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10928830361 → 2387195215 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1176237661&quot; target=&quot;_blank&quot;>1176237661</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>15.178726762917652</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_508aaad6d28bea856f49b2970789600e.setContent(html_719807bd43b97da69d46d0c8aa06c8b4);
            
        

        poly_line_969aa968916689bd5bdd48d95fe692dd.bindPopup(popup_508aaad6d28bea856f49b2970789600e)
        ;

        
    
    
            var poly_line_5f3a867ad6e2cdfc1a18461d18b234e0 = L.polyline(
                [[41.9109426, -87.6450977], [41.9109556, -87.6443618]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7e2fecac1606a03ce48243d66064bee2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_121868254347321c19a2550b3b37230b = $(`<div id=&quot;html_121868254347321c19a2550b3b37230b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10928830367 → 11891979872 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1281217243&quot; target=&quot;_blank&quot;>1281217243</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>primary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>60.91257964603412</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West North Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>ref</td><td style='padding:2px 6px;'>IL 64</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_7e2fecac1606a03ce48243d66064bee2.setContent(html_121868254347321c19a2550b3b37230b);
            
        

        poly_line_5f3a867ad6e2cdfc1a18461d18b234e0.bindPopup(popup_7e2fecac1606a03ce48243d66064bee2)
        ;

        
    
    
            var poly_line_136e0b10cd386b85166399ab283a7ba9 = L.polyline(
                [[41.9109426, -87.6450977], [41.910888, -87.6451481], [41.9108125, -87.6451465]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c34a369505c21c4dd7eb36257d988589 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fbf4d7451b7ce8b6be464603cecb65d0 = $(`<div id=&quot;html_fbf4d7451b7ce8b6be464603cecb65d0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10928830367 → 10928830372 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1176237662&quot; target=&quot;_blank&quot;>1176237662</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>15.761993861060887</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_c34a369505c21c4dd7eb36257d988589.setContent(html_fbf4d7451b7ce8b6be464603cecb65d0);
            
        

        poly_line_136e0b10cd386b85166399ab283a7ba9.bindPopup(popup_c34a369505c21c4dd7eb36257d988589)
        ;

        
    
    
            var poly_line_0848f28fb9240454001c83c410226b36 = L.polyline(
                [[41.9107495, -87.6450325], [41.9108131, -87.6450327]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b15ffdd3f377666dbaa487b243d3d657 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_de5bb7987030b06265661546047a211f = $(`<div id=&quot;html_de5bb7987030b06265661546047a211f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10928830371 → 10928830373 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1176237664&quot; target=&quot;_blank&quot;>1176237664</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.0720266900973705</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_b15ffdd3f377666dbaa487b243d3d657.setContent(html_de5bb7987030b06265661546047a211f);
            
        

        poly_line_0848f28fb9240454001c83c410226b36.bindPopup(popup_b15ffdd3f377666dbaa487b243d3d657)
        ;

        
    
    
            var poly_line_31fb487f9caf8eaa382ef67d481cd0e0 = L.polyline(
                [[41.9108125, -87.6451465], [41.910748, -87.6451452]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_df1b31cca6a1bc09c85e456263a839a5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_49c7ea00eb5f3c640fc2320a472e466a = $(`<div id=&quot;html_49c7ea00eb5f3c640fc2320a472e466a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10928830372 → 10928830369 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1176237662&quot; target=&quot;_blank&quot;>1176237662</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.1728896168981855</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_df1b31cca6a1bc09c85e456263a839a5.setContent(html_49c7ea00eb5f3c640fc2320a472e466a);
            
        

        poly_line_31fb487f9caf8eaa382ef67d481cd0e0.bindPopup(popup_df1b31cca6a1bc09c85e456263a839a5)
        ;

        
    
    
            var poly_line_d6393962427e1993574550bec52bfc08 = L.polyline(
                [[41.9108125, -87.6451465], [41.9108131, -87.6450327]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a349b2f2a60979a6dcfbf9bef615b521 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_760424aaa12140bb502906484e90252e = $(`<div id=&quot;html_760424aaa12140bb502906484e90252e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10928830372 → 10928830373 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1176237665&quot; target=&quot;_blank&quot;>1176237665</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>9.417160049102897</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_a349b2f2a60979a6dcfbf9bef615b521.setContent(html_760424aaa12140bb502906484e90252e);
            
        

        poly_line_d6393962427e1993574550bec52bfc08.bindPopup(popup_a349b2f2a60979a6dcfbf9bef615b521)
        ;

        
    
    
            var poly_line_0076789cec4124d017aaca0e151a58b5 = L.polyline(
                [[41.9108131, -87.6450327], [41.9108125, -87.6451465]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2ca30d2e93d6d21287d2d58bc608ccb2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_44d30b6de3a7740d05324c8c2abff265 = $(`<div id=&quot;html_44d30b6de3a7740d05324c8c2abff265&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10928830373 → 10928830372 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1176237665&quot; target=&quot;_blank&quot;>1176237665</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>9.417160049102897</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_2ca30d2e93d6d21287d2d58bc608ccb2.setContent(html_44d30b6de3a7740d05324c8c2abff265);
            
        

        poly_line_0076789cec4124d017aaca0e151a58b5.bindPopup(popup_2ca30d2e93d6d21287d2d58bc608ccb2)
        ;

        
    
    
            var poly_line_f41b5a22c9bf2f8b55f2a7668c08ac0a = L.polyline(
                [[41.9108131, -87.6450327], [41.9108895, -87.6450329], [41.9109426, -87.6450977]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4ed8c8a9ff751264beb491bc5d28c508 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7d9330ea2ed06a8b05883d86e7a72e22 = $(`<div id=&quot;html_7d9330ea2ed06a8b05883d86e7a72e22&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10928830373 → 10928830367 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1176237664&quot; target=&quot;_blank&quot;>1176237664</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>16.47125749828771</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_4ed8c8a9ff751264beb491bc5d28c508.setContent(html_7d9330ea2ed06a8b05883d86e7a72e22);
            
        

        poly_line_f41b5a22c9bf2f8b55f2a7668c08ac0a.bindPopup(popup_4ed8c8a9ff751264beb491bc5d28c508)
        ;

        
    
    
            var poly_line_e89ee8579658d68a7164fbeaea78af3a = L.polyline(
                [[41.8968628, -87.6502698], [41.8968704, -87.6498019]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#42d4f4&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#42d4f4&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_55ea2e4280f366b65506ad95ae842489 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9d8405715c30f686a09294113bf6da02 = $(`<div id=&quot;html_9d8405715c30f686a09294113bf6da02&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10930796654 → 10930796655 (key 0)<br>                 <b>Component</b> 5<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1176485108&quot; target=&quot;_blank&quot;>1176485108</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>38.73629438979358</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_55ea2e4280f366b65506ad95ae842489.setContent(html_9d8405715c30f686a09294113bf6da02);
            
        

        poly_line_e89ee8579658d68a7164fbeaea78af3a.bindPopup(popup_55ea2e4280f366b65506ad95ae842489)
        ;

        
    
    
            var poly_line_380a7f1336d19fdd528271b72c9703fb = L.polyline(
                [[41.8968704, -87.6498019], [41.8968628, -87.6502698]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#42d4f4&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#42d4f4&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d2fc21376b10deb3e2f6b899589a1de8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4524e30a6f30c52a501333bfbde23e28 = $(`<div id=&quot;html_4524e30a6f30c52a501333bfbde23e28&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10930796655 → 10930796654 (key 0)<br>                 <b>Component</b> 5<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1176485108&quot; target=&quot;_blank&quot;>1176485108</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>38.73629438979358</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_d2fc21376b10deb3e2f6b899589a1de8.setContent(html_4524e30a6f30c52a501333bfbde23e28);
            
        

        poly_line_380a7f1336d19fdd528271b72c9703fb.bindPopup(popup_d2fc21376b10deb3e2f6b899589a1de8)
        ;

        
    
    
            var poly_line_bc81300f77dd2d8c9fadba1224e97150 = L.polyline(
                [[41.8968704, -87.6498019], [41.8972401, -87.6498074], [41.8972853, -87.6497983], [41.8973087, -87.6497936]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#42d4f4&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#42d4f4&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2ebda4a162e2b8aa6c07611ab6ad3bbf = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_974d49abb24b7e11e47659c39d735835 = $(`<div id=&quot;html_974d49abb24b7e11e47659c39d735835&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10930796655 → 2503413060 (key 0)<br>                 <b>Component</b> 5<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/242896629&quot; target=&quot;_blank&quot;>242896629</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>48.82436546657863</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Peoria Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_2ebda4a162e2b8aa6c07611ab6ad3bbf.setContent(html_974d49abb24b7e11e47659c39d735835);
            
        

        poly_line_bc81300f77dd2d8c9fadba1224e97150.bindPopup(popup_2ebda4a162e2b8aa6c07611ab6ad3bbf)
        ;

        
    
    
            var poly_line_b25384f3fd464074605e127497ebd408 = L.polyline(
                [[41.9103484, -87.651878], [41.9103564, -87.6513915]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_102b5aac3759d9a69ba56d02f23f463d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0cdc4fa5e178c682d7a2c4a59b33927d = $(`<div id=&quot;html_0cdc4fa5e178c682d7a2c4a59b33927d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10941231092 → 5493322750 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/231835387&quot; target=&quot;_blank&quot;>231835387</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>40.26787985995493</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_102b5aac3759d9a69ba56d02f23f463d.setContent(html_0cdc4fa5e178c682d7a2c4a59b33927d);
            
        

        poly_line_b25384f3fd464074605e127497ebd408.bindPopup(popup_102b5aac3759d9a69ba56d02f23f463d)
        ;

        
    
    
            var poly_line_cafbcdcdd1a246c229a869e3ef3c6789 = L.polyline(
                [[41.9103484, -87.651878], [41.9103299, -87.6529948], [41.910328, -87.6531073]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5a39ea4b03e5fe49ba35005382c46cfd = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_953eb06016b64961713f7ae285330d42 = $(`<div id=&quot;html_953eb06016b64961713f7ae285330d42&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10941231092 → 2401648316 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/231835387&quot; target=&quot;_blank&quot;>231835387</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>101.75033644083923</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_5a39ea4b03e5fe49ba35005382c46cfd.setContent(html_953eb06016b64961713f7ae285330d42);
            
        

        poly_line_cafbcdcdd1a246c229a869e3ef3c6789.bindPopup(popup_5a39ea4b03e5fe49ba35005382c46cfd)
        ;

        
    
    
            var poly_line_2e7f0ddda103e01c68940e435e20cb92 = L.polyline(
                [[41.9103484, -87.651878], [41.9098992, -87.6518699], [41.9098089, -87.6518682]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_51c546cc71ce445108c0b5e5c3abca4a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9915ecf62e00802fa7ce0c0731452bc4 = $(`<div id=&quot;html_9915ecf62e00802fa7ce0c0731452bc4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10941231092 → 10941231093 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1177756754&quot; target=&quot;_blank&quot;>1177756754</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>59.995230242193465</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_51c546cc71ce445108c0b5e5c3abca4a.setContent(html_9915ecf62e00802fa7ce0c0731452bc4);
            
        

        poly_line_2e7f0ddda103e01c68940e435e20cb92.bindPopup(popup_51c546cc71ce445108c0b5e5c3abca4a)
        ;

        
    
    
            var poly_line_079a096db08041f55b8b7153d803d1d0 = L.polyline(
                [[41.9098089, -87.6518682], [41.9098064, -87.6519877]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a2133aceb14728a2c1973bd78ccf0d66 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2f96c036d89e4d068663c8835b8a7a8f = $(`<div id=&quot;html_2f96c036d89e4d068663c8835b8a7a8f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10941231093 → 5493322746 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24083761&quot; target=&quot;_blank&quot;>24083761</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>9.892659662755253</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Weed Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_a2133aceb14728a2c1973bd78ccf0d66.setContent(html_2f96c036d89e4d068663c8835b8a7a8f);
            
        

        poly_line_079a096db08041f55b8b7153d803d1d0.bindPopup(popup_a2133aceb14728a2c1973bd78ccf0d66)
        ;

        
    
    
            var poly_line_c9e5f2b874cd53e436d5d71df70b8e23 = L.polyline(
                [[41.9098089, -87.6518682], [41.9098194, -87.6513543]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e1b4f47e33a9c5b4c504a1a3b900f7e1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fe6a00308639fa0302ed1286c2c14f04 = $(`<div id=&quot;html_fe6a00308639fa0302ed1286c2c14f04&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10941231093 → 5493322753 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24083761&quot; target=&quot;_blank&quot;>24083761</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>42.54179613045074</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Weed Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_e1b4f47e33a9c5b4c504a1a3b900f7e1.setContent(html_fe6a00308639fa0302ed1286c2c14f04);
            
        

        poly_line_c9e5f2b874cd53e436d5d71df70b8e23.bindPopup(popup_e1b4f47e33a9c5b4c504a1a3b900f7e1)
        ;

        
    
    
            var poly_line_cb883c5a50c7ccc13f168a5b31ab919a = L.polyline(
                [[41.9098089, -87.6518682], [41.9098992, -87.6518699], [41.9103484, -87.651878]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_76e4a4618e8505fa79d707adf6d30af1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e9c396718464c984dc312fc88638ca6b = $(`<div id=&quot;html_e9c396718464c984dc312fc88638ca6b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10941231093 → 10941231092 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1177756754&quot; target=&quot;_blank&quot;>1177756754</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>59.995230242193465</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_76e4a4618e8505fa79d707adf6d30af1.setContent(html_e9c396718464c984dc312fc88638ca6b);
            
        

        poly_line_cb883c5a50c7ccc13f168a5b31ab919a.bindPopup(popup_76e4a4618e8505fa79d707adf6d30af1)
        ;

        
    
    
            var poly_line_75bbffc81d5f4188866d8deab124f3a3 = L.polyline(
                [[41.9089388, -87.648832], [41.9097961, -87.6488552], [41.9098603, -87.6488569]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a8187adf56c25e82a54a8fca512b5432 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d5cefbe763773eb435d4309db0a8d0fe = $(`<div id=&quot;html_d5cefbe763773eb435d4309db0a8d0fe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10941231095 → 2401648236 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/231835393&quot; target=&quot;_blank&quot;>231835393</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>102.48698583532546</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_a8187adf56c25e82a54a8fca512b5432.setContent(html_d5cefbe763773eb435d4309db0a8d0fe);
            
        

        poly_line_75bbffc81d5f4188866d8deab124f3a3.bindPopup(popup_a8187adf56c25e82a54a8fca512b5432)
        ;

        
    
    
            var poly_line_6b9279020bcc36a42fa7a3ab3a7c1b7b = L.polyline(
                [[41.9089388, -87.648832], [41.9086281, -87.6488236], [41.9085674, -87.6488221]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_63111c856643f3b6df66d96ae4c877c2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_300bb2ebc7a63581b4560466d5e82680 = $(`<div id=&quot;html_300bb2ebc7a63581b4560466d5e82680&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10941231095 → 2401648323 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/231835393&quot; target=&quot;_blank&quot;>231835393</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>41.305987692407236</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_63111c856643f3b6df66d96ae4c877c2.setContent(html_300bb2ebc7a63581b4560466d5e82680);
            
        

        poly_line_6b9279020bcc36a42fa7a3ab3a7c1b7b.bindPopup(popup_63111c856643f3b6df66d96ae4c877c2)
        ;

        
    
    
            var poly_line_5505a7eabe585f6755ea1f5486ff3953 = L.polyline(
                [[41.9089388, -87.648832], [41.9089459, -87.6483345], [41.9089475, -87.6482254]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4299f1e180fd004a40c23ebc38bbdeeb = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0f39179c1176368227275ae2b70345e1 = $(`<div id=&quot;html_0f39179c1176368227275ae2b70345e1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10941231095 → 10941231096 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1177756755&quot; target=&quot;_blank&quot;>1177756755</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>50.2068020275902</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_4299f1e180fd004a40c23ebc38bbdeeb.setContent(html_0f39179c1176368227275ae2b70345e1);
            
        

        poly_line_5505a7eabe585f6755ea1f5486ff3953.bindPopup(popup_4299f1e180fd004a40c23ebc38bbdeeb)
        ;

        
    
    
            var poly_line_e5c551edb4f1a5b80aca30249278fe0b = L.polyline(
                [[41.9089475, -87.6482254], [41.9089459, -87.6483345], [41.9089388, -87.648832]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_564170a1a477e2125efdab938e91b9ab = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_710fb9c2fe1044ff4cbfb680354594e3 = $(`<div id=&quot;html_710fb9c2fe1044ff4cbfb680354594e3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10941231096 → 10941231095 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1177756755&quot; target=&quot;_blank&quot;>1177756755</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>50.2068020275902</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_564170a1a477e2125efdab938e91b9ab.setContent(html_710fb9c2fe1044ff4cbfb680354594e3);
            
        

        poly_line_e5c551edb4f1a5b80aca30249278fe0b.bindPopup(popup_564170a1a477e2125efdab938e91b9ab)
        ;

        
    
    
            var poly_line_8efab38fbcbfc9bb226e225695e56c9d = L.polyline(
                [[41.9089475, -87.6482254], [41.9095208, -87.6482419], [41.9098011, -87.6482492], [41.9098701, -87.6482517]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_27c2f7208430f3ebb593e777a954e331 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9e97eb0638ad3993d73120a02197549f = $(`<div id=&quot;html_9e97eb0638ad3993d73120a02197549f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10941231096 → 265642209 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1377435753&quot; target=&quot;_blank&quot;>1377435753</a>, <a href=&quot;https://www.openstreetmap.org/way/435397270&quot; target=&quot;_blank&quot;>435397270</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>102.6118472749296</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Halsted Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_27c2f7208430f3ebb593e777a954e331.setContent(html_9e97eb0638ad3993d73120a02197549f);
            
        

        poly_line_8efab38fbcbfc9bb226e225695e56c9d.bindPopup(popup_27c2f7208430f3ebb593e777a954e331)
        ;

        
    
    
            var poly_line_301caa91524513f51337989636db9e8a = L.polyline(
                [[41.9089475, -87.6482254], [41.9088714, -87.6482231], [41.9088606, -87.6482228], [41.9087013, -87.6482182], [41.9086582, -87.648217], [41.9085748, -87.6482146]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c909f35b0efa06cb9770f4287409da16 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_df89427039e1095048d464090bc2f712 = $(`<div id=&quot;html_df89427039e1095048d464090bc2f712&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 10941231096 → 265642220 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1377435753&quot; target=&quot;_blank&quot;>1377435753</a>, <a href=&quot;https://www.openstreetmap.org/way/1377435754&quot; target=&quot;_blank&quot;>1377435754</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>3</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>41.45204938481358</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Halsted Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_c909f35b0efa06cb9770f4287409da16.setContent(html_df89427039e1095048d464090bc2f712);
            
        

        poly_line_301caa91524513f51337989636db9e8a.bindPopup(popup_c909f35b0efa06cb9770f4287409da16)
        ;

        
    
    
            var poly_line_50ca28d252091751863c0191b9c3299f = L.polyline(
                [[41.8974032, -87.6515074], [41.89743, -87.6515664], [41.8974274, -87.6517617], [41.8974263, -87.6518448]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e938a4cade5179f053e37810c82f5084 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c87ac4d8cd4cb611bbf1ae191c927522 = $(`<div id=&quot;html_c87ac4d8cd4cb611bbf1ae191c927522&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11242037532 → 12233690208 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1213414740&quot; target=&quot;_blank&quot;>1213414740</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>28.766772972388104</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Fry Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_e938a4cade5179f053e37810c82f5084.setContent(html_c87ac4d8cd4cb611bbf1ae191c927522);
            
        

        poly_line_50ca28d252091751863c0191b9c3299f.bindPopup(popup_e938a4cade5179f053e37810c82f5084)
        ;

        
    
    
            var poly_line_17f9a118cd0e3771a18b602441d7fa60 = L.polyline(
                [[41.8973654, -87.6535809], [41.8973608, -87.6538138]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b5688a18d311e9e4026b08f34896cd5b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e77b55f35990e25c33215599d8672fc2 = $(`<div id=&quot;html_e77b55f35990e25c33215599d8672fc2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11270578643 → 11270578646 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24070830&quot; target=&quot;_blank&quot;>24070830</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.283266445030502</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Fry Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_b5688a18d311e9e4026b08f34896cd5b.setContent(html_e77b55f35990e25c33215599d8672fc2);
            
        

        poly_line_17f9a118cd0e3771a18b602441d7fa60.bindPopup(popup_b5688a18d311e9e4026b08f34896cd5b)
        ;

        
    
    
            var poly_line_212d77de885a16ae0566eb0af4e2c768 = L.polyline(
                [[41.8973654, -87.6535809], [41.8973671, -87.6534811], [41.8973948, -87.6521028]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_26a700d897b8de3a4873275dda61d2d1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4d27e58642ff79b42039409bb28fa892 = $(`<div id=&quot;html_4d27e58642ff79b42039409bb28fa892&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11270578643 → 12233690216 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24070830&quot; target=&quot;_blank&quot;>24070830</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>122.38190581209655</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Fry Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_26a700d897b8de3a4873275dda61d2d1.setContent(html_4d27e58642ff79b42039409bb28fa892);
            
        

        poly_line_212d77de885a16ae0566eb0af4e2c768.bindPopup(popup_26a700d897b8de3a4873275dda61d2d1)
        ;

        
    
    
            var poly_line_d82368382aa1de638acd181a3145ea23 = L.polyline(
                [[41.8973654, -87.6535809], [41.8974633, -87.6534868], [41.8976167, -87.6533389], [41.8979519, -87.6529674], [41.8982014, -87.6527112], [41.8983506, -87.6525669], [41.8984325, -87.6525349], [41.898517, -87.6525589]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_287b269dbbfa8d6578d2bea0882af307 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b3eece8cadec46dd4ca1b59a7e6a622d = $(`<div id=&quot;html_b3eece8cadec46dd4ca1b59a7e6a622d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11270578643 → 739187858 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59586264&quot; target=&quot;_blank&quot;>59586264</a>, <a href=&quot;https://www.openstreetmap.org/way/59586273&quot; target=&quot;_blank&quot;>59586273</a>, <a href=&quot;https://www.openstreetmap.org/way/59586265&quot; target=&quot;_blank&quot;>59586265</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>157.14761830786696</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Ogden Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_287b269dbbfa8d6578d2bea0882af307.setContent(html_b3eece8cadec46dd4ca1b59a7e6a622d);
            
        

        poly_line_d82368382aa1de638acd181a3145ea23.bindPopup(popup_287b269dbbfa8d6578d2bea0882af307)
        ;

        
    
    
            var poly_line_dfefc497d59054c3bd704886ecc2b368 = L.polyline(
                [[41.8973608, -87.6538138], [41.8973654, -87.6535809]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8b0552e83ace6269b0a443d65e28981f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_947058a44e5489addf014802e4324511 = $(`<div id=&quot;html_947058a44e5489addf014802e4324511&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11270578646 → 11270578643 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24070830&quot; target=&quot;_blank&quot;>24070830</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.283266445030502</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Fry Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_8b0552e83ace6269b0a443d65e28981f.setContent(html_947058a44e5489addf014802e4324511);
            
        

        poly_line_dfefc497d59054c3bd704886ecc2b368.bindPopup(popup_8b0552e83ace6269b0a443d65e28981f)
        ;

        
    
    
            var poly_line_d77db66207796834398d2a467197b160 = L.polyline(
                [[41.8973608, -87.6538138], [41.8973588, -87.6539348], [41.8973421, -87.6547539]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4119e38380ac8d9c8e4ff776a0e916ce = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7236e5b7379ce356ffae5a988a3d325d = $(`<div id=&quot;html_7236e5b7379ce356ffae5a988a3d325d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11270578646 → 4100010516 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24070830&quot; target=&quot;_blank&quot;>24070830</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>77.83735680357407</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Fry Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_4119e38380ac8d9c8e4ff776a0e916ce.setContent(html_7236e5b7379ce356ffae5a988a3d325d);
            
        

        poly_line_d77db66207796834398d2a467197b160.bindPopup(popup_4119e38380ac8d9c8e4ff776a0e916ce)
        ;

        
    
    
            var poly_line_9cfeb5d47d04124fc08bfd4b3770ad25 = L.polyline(
                [[41.8973608, -87.6538138], [41.8972853, -87.6538756], [41.8968098, -87.6542686]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7887836eca0bae17e77386876a72ec8b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_587c51b520b21fe1510c81c2070f0346 = $(`<div id=&quot;html_587c51b520b21fe1510c81c2070f0346&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11270578646 → 5455415466 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59586266&quot; target=&quot;_blank&quot;>59586266</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>71.90835319538964</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Ogden Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_7887836eca0bae17e77386876a72ec8b.setContent(html_587c51b520b21fe1510c81c2070f0346);
            
        

        poly_line_9cfeb5d47d04124fc08bfd4b3770ad25.bindPopup(popup_7887836eca0bae17e77386876a72ec8b)
        ;

        
    
    
            var poly_line_4492dbf8ef6c013f42b0405f184e4613 = L.polyline(
                [[41.907495, -87.6467777], [41.9074859, -87.6473103]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8dc097c230dda63a5af9f65fec1ebd4f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a54707cdf335e49a00db698b45bdc655 = $(`<div id=&quot;html_a54707cdf335e49a00db698b45bdc655&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11310995656 → 7649225327 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1024669102&quot; target=&quot;_blank&quot;>1024669102</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>44.08643461907252</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Schiller Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_8dc097c230dda63a5af9f65fec1ebd4f.setContent(html_a54707cdf335e49a00db698b45bdc655);
            
        

        poly_line_4492dbf8ef6c013f42b0405f184e4613.bindPopup(popup_8dc097c230dda63a5af9f65fec1ebd4f)
        ;

        
    
    
            var poly_line_d9c9a846efa25054766c0e9a4eade6f2 = L.polyline(
                [[41.907495, -87.6467777], [41.9075063, -87.6461214], [41.9075073, -87.6460816]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4f5e3786121581362464f981067e7065 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d6d3a46b0024efc8cf61626d2f090bab = $(`<div id=&quot;html_d6d3a46b0024efc8cf61626d2f090bab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11310995656 → 5831748105 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1024669102&quot; target=&quot;_blank&quot;>1024669102</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>57.62151189205624</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Schiller Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_4f5e3786121581362464f981067e7065.setContent(html_d6d3a46b0024efc8cf61626d2f090bab);
            
        

        poly_line_d9c9a846efa25054766c0e9a4eade6f2.bindPopup(popup_4f5e3786121581362464f981067e7065)
        ;

        
    
    
            var poly_line_b1dfa3571e6df8b1b6763e6b38f1e33c = L.polyline(
                [[41.907495, -87.6467777], [41.9074317, -87.646779], [41.9073623, -87.6467805]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_638c1a501dc47b67356d35906e21ea2e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6a313fa79a9e77bce1fc658cefdaf081 = $(`<div id=&quot;html_6a313fa79a9e77bce1fc658cefdaf081&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11310995656 → 11310995657 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1220665375&quot; target=&quot;_blank&quot;>1220665375</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>14.757407999700375</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_638c1a501dc47b67356d35906e21ea2e.setContent(html_6a313fa79a9e77bce1fc658cefdaf081);
            
        

        poly_line_b1dfa3571e6df8b1b6763e6b38f1e33c.bindPopup(popup_638c1a501dc47b67356d35906e21ea2e)
        ;

        
    
    
            var poly_line_c28245a6a10ca1010a15830a1840439b = L.polyline(
                [[41.9073623, -87.6467805], [41.9073663, -87.6465955]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e31d15c29d2c30ebb697d57f29c9a813 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0c05ac56fd1162e32e3788b534689ded = $(`<div id=&quot;html_0c05ac56fd1162e32e3788b534689ded&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11310995657 → 11310995660 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1220665376&quot; target=&quot;_blank&quot;>1220665376</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>15.315993904032085</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_e31d15c29d2c30ebb697d57f29c9a813.setContent(html_0c05ac56fd1162e32e3788b534689ded);
            
        

        poly_line_c28245a6a10ca1010a15830a1840439b.bindPopup(popup_e31d15c29d2c30ebb697d57f29c9a813)
        ;

        
    
    
            var poly_line_bf0fa7f75544d651518f835fca518302 = L.polyline(
                [[41.9073623, -87.6467805], [41.9073583, -87.6469549]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0218c00cf5e45481070b83bed00abdaf = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_16370654d16cd9dbc66d5aa771c8482e = $(`<div id=&quot;html_16370654d16cd9dbc66d5aa771c8482e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11310995657 → 11310995659 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1220665376&quot; target=&quot;_blank&quot;>1220665376</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>14.439192304004832</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_0218c00cf5e45481070b83bed00abdaf.setContent(html_16370654d16cd9dbc66d5aa771c8482e);
            
        

        poly_line_bf0fa7f75544d651518f835fca518302.bindPopup(popup_0218c00cf5e45481070b83bed00abdaf)
        ;

        
    
    
            var poly_line_bb6be76f22d600ea42ba14824e808ed8 = L.polyline(
                [[41.9073623, -87.6467805], [41.9074317, -87.646779], [41.907495, -87.6467777]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_84fcc31d2111dc29cd9d1bfe3c5d8e54 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_44f93d644fa12ebf43ca9c38a9c6949e = $(`<div id=&quot;html_44f93d644fa12ebf43ca9c38a9c6949e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11310995657 → 11310995656 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1220665375&quot; target=&quot;_blank&quot;>1220665375</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>14.757407999700375</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_84fcc31d2111dc29cd9d1bfe3c5d8e54.setContent(html_44f93d644fa12ebf43ca9c38a9c6949e);
            
        

        poly_line_bb6be76f22d600ea42ba14824e808ed8.bindPopup(popup_84fcc31d2111dc29cd9d1bfe3c5d8e54)
        ;

        
    
    
            var poly_line_fa69787bf42f405e5f760dbcddff1257 = L.polyline(
                [[41.9073583, -87.6469549], [41.9073623, -87.6467805]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_40237e9141d871a1a3da7ff48c43ca8d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_07c9143383a19924b8911aeeba4a0829 = $(`<div id=&quot;html_07c9143383a19924b8911aeeba4a0829&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11310995659 → 11310995657 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1220665376&quot; target=&quot;_blank&quot;>1220665376</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>14.439192304004832</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_40237e9141d871a1a3da7ff48c43ca8d.setContent(html_07c9143383a19924b8911aeeba4a0829);
            
        

        poly_line_fa69787bf42f405e5f760dbcddff1257.bindPopup(popup_40237e9141d871a1a3da7ff48c43ca8d)
        ;

        
    
    
            var poly_line_76c02791a2c8e005bb5a6abe3ff35033 = L.polyline(
                [[41.9073663, -87.6465955], [41.9073623, -87.6467805]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ed26a49445668a798fe1269a23f40f06 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_101d5a477f962833cbf0b84d88526f9e = $(`<div id=&quot;html_101d5a477f962833cbf0b84d88526f9e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11310995660 → 11310995657 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1220665376&quot; target=&quot;_blank&quot;>1220665376</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>15.315993904032085</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_ed26a49445668a798fe1269a23f40f06.setContent(html_101d5a477f962833cbf0b84d88526f9e);
            
        

        poly_line_76c02791a2c8e005bb5a6abe3ff35033.bindPopup(popup_ed26a49445668a798fe1269a23f40f06)
        ;

        
    
    
            var poly_line_4aedd0342e087afbbb9afc063ddad505 = L.polyline(
                [[41.9072844, -87.6475315], [41.9074254, -87.6475354], [41.9074819, -87.647537]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_829eebcf53deeb69a0f178916127d9f1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_667f4222916338550a973f3047e02cbb = $(`<div id=&quot;html_667f4222916338550a973f3047e02cbb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11310995661 → 11310995662 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1220665377&quot; target=&quot;_blank&quot;>1220665377</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.9657456016471</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_829eebcf53deeb69a0f178916127d9f1.setContent(html_667f4222916338550a973f3047e02cbb);
            
        

        poly_line_4aedd0342e087afbbb9afc063ddad505.bindPopup(popup_829eebcf53deeb69a0f178916127d9f1)
        ;

        
    
    
            var poly_line_b33963f83e07be6a42f4164877d4abde = L.polyline(
                [[41.9074819, -87.647537], [41.9074826, -87.6474976]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e716f60466716bfdf2572c0454447686 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_27b0f07b4423f1f700a708320acbb661 = $(`<div id=&quot;html_27b0f07b4423f1f700a708320acbb661&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11310995662 → 7649225325 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1024669102&quot; target=&quot;_blank&quot;>1024669102</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>3.261439950136639</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Schiller Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_e716f60466716bfdf2572c0454447686.setContent(html_27b0f07b4423f1f700a708320acbb661);
            
        

        poly_line_b33963f83e07be6a42f4164877d4abde.bindPopup(popup_e716f60466716bfdf2572c0454447686)
        ;

        
    
    
            var poly_line_0d37048d4430bd73a946bac10464fbc0 = L.polyline(
                [[41.9074819, -87.647537], [41.9074731, -87.6480419], [41.9074726, -87.6480722], [41.9074706, -87.6481841]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_18f70dd9fa394e5955495506b2dac787 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_01c8f247da7ebd6dbc4a578cbb57baa2 = $(`<div id=&quot;html_01c8f247da7ebd6dbc4a578cbb57baa2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11310995662 → 262368739 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1024669102&quot; target=&quot;_blank&quot;>1024669102</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>53.564917207140404</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Schiller Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_18f70dd9fa394e5955495506b2dac787.setContent(html_01c8f247da7ebd6dbc4a578cbb57baa2);
            
        

        poly_line_0d37048d4430bd73a946bac10464fbc0.bindPopup(popup_18f70dd9fa394e5955495506b2dac787)
        ;

        
    
    
            var poly_line_61c3b4e368146cc6555ad89ec6febe6a = L.polyline(
                [[41.9074819, -87.647537], [41.9074254, -87.6475354], [41.9072844, -87.6475315]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3fc997fd0db0a55f6c2a6faa9806e484 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ba54f9fd68d3d553f36c11aadffe3bd2 = $(`<div id=&quot;html_ba54f9fd68d3d553f36c11aadffe3bd2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11310995662 → 11310995661 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1220665377&quot; target=&quot;_blank&quot;>1220665377</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.9657456016471</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_3fc997fd0db0a55f6c2a6faa9806e484.setContent(html_ba54f9fd68d3d553f36c11aadffe3bd2);
            
        

        poly_line_61c3b4e368146cc6555ad89ec6febe6a.bindPopup(popup_3fc997fd0db0a55f6c2a6faa9806e484)
        ;

        
    
    
            var poly_line_6d1c5a27a9ace559b80b7aa5a77ee653 = L.polyline(
                [[41.903276, -87.6478363], [41.9032775, -87.6478005], [41.9033088, -87.6477334]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_bb768ba7f59cbd944ce6acc75b0c4ace = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f653a610eab997c4177ee8ebb2f03f1a = $(`<div id=&quot;html_f653a610eab997c4177ee8ebb2f03f1a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11396158694 → 9987432804 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1090384311&quot; target=&quot;_blank&quot;>1090384311</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>9.521172558789566</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_bb768ba7f59cbd944ce6acc75b0c4ace.setContent(html_f653a610eab997c4177ee8ebb2f03f1a);
            
        

        poly_line_6d1c5a27a9ace559b80b7aa5a77ee653.bindPopup(popup_bb768ba7f59cbd944ce6acc75b0c4ace)
        ;

        
    
    
            var poly_line_2bb1847221039393004acc730e29a6c8 = L.polyline(
                [[41.903276, -87.6478363], [41.9032715, -87.6479416], [41.903266, -87.6480693]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d348c260651bfe5ca8fe8a0ae989684b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f4bd829a7692018da6c2736f4a7c9f22 = $(`<div id=&quot;html_f4bd829a7692018da6c2736f4a7c9f22&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11396158694 → 9987432801 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1090384311&quot; target=&quot;_blank&quot;>1090384311</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.315008148323606</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_d348c260651bfe5ca8fe8a0ae989684b.setContent(html_f4bd829a7692018da6c2736f4a7c9f22);
            
        

        poly_line_2bb1847221039393004acc730e29a6c8.bindPopup(popup_d348c260651bfe5ca8fe8a0ae989684b)
        ;

        
    
    
            var poly_line_8c8b28c4eee38fc136cab08dcb4ab2b8 = L.polyline(
                [[41.903276, -87.6478363], [41.9030855, -87.6476874], [41.9030913, -87.6473233], [41.903217, -87.647077], [41.9034822, -87.6470848], [41.9035448, -87.6471687]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fd2b3c887044f7a223f5e9d90a34dd3e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3e1b041edf8902da651d8beca50ddac1 = $(`<div id=&quot;html_3e1b041edf8902da651d8beca50ddac1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11396158694 → 9987432810 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1228856471&quot; target=&quot;_blank&quot;>1228856471</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>118.68944487512223</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_fd2b3c887044f7a223f5e9d90a34dd3e.setContent(html_3e1b041edf8902da651d8beca50ddac1);
            
        

        poly_line_8c8b28c4eee38fc136cab08dcb4ab2b8.bindPopup(popup_fd2b3c887044f7a223f5e9d90a34dd3e)
        ;

        
    
    
            var poly_line_1e5c429e1129d90de1bf564dd533757f = L.polyline(
                [[41.9069084, -87.6518286], [41.9068445, -87.6516881], [41.9068141, -87.6516065], [41.9070571, -87.6510848], [41.9070697, -87.6510544], [41.9071054, -87.6509745]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c1e97c08a27d37ddff8a5dc68dfaf4b7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0c6d08c8c16d1ac8173b6dc840606de7 = $(`<div id=&quot;html_0c6d08c8c16d1ac8173b6dc840606de7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11653264169 → 734238221 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1253661350&quot; target=&quot;_blank&quot;>1253661350</a>, <a href=&quot;https://www.openstreetmap.org/way/273622071&quot; target=&quot;_blank&quot;>273622071</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>['service', 'unclassified']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>82.70121576568266</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Eastman Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_c1e97c08a27d37ddff8a5dc68dfaf4b7.setContent(html_0c6d08c8c16d1ac8173b6dc840606de7);
            
        

        poly_line_1e5c429e1129d90de1bf564dd533757f.bindPopup(popup_c1e97c08a27d37ddff8a5dc68dfaf4b7)
        ;

        
    
    
            var poly_line_f661fddb57e02ce1f2904e556b54ab16 = L.polyline(
                [[41.9077978, -87.6524499], [41.907891, -87.6524673]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c2cb1bb5be0416a11107f1cdf3f75666 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b3a7f700509f1d9b661fa915d6749175 = $(`<div id=&quot;html_b3a7f700509f1d9b661fa915d6749175&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11653264172 → 12185013447 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1253661354&quot; target=&quot;_blank&quot;>1253661354</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>10.462936091716857</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_c2cb1bb5be0416a11107f1cdf3f75666.setContent(html_b3a7f700509f1d9b661fa915d6749175);
            
        

        poly_line_f661fddb57e02ce1f2904e556b54ab16.bindPopup(popup_c2cb1bb5be0416a11107f1cdf3f75666)
        ;

        
    
    
            var poly_line_4a00ea20f772817ca6f3bdeba34ec21a = L.polyline(
                [[41.9006654, -87.6574133], [41.9006574, -87.6579651], [41.900652, -87.6583398]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2e8fb808437d754e44a28c070137cbb3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0f71e16d34aec0f42a3839189c7b8ded = $(`<div id=&quot;html_0f71e16d34aec0f42a3839189c7b8ded&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11735383559 → 5479954576 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24071514&quot; target=&quot;_blank&quot;>24071514</a>, <a href=&quot;https://www.openstreetmap.org/way/1126560639&quot; target=&quot;_blank&quot;>1126560639</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>76.69433100976383</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Cortez Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_2e8fb808437d754e44a28c070137cbb3.setContent(html_0f71e16d34aec0f42a3839189c7b8ded);
            
        

        poly_line_4a00ea20f772817ca6f3bdeba34ec21a.bindPopup(popup_2e8fb808437d754e44a28c070137cbb3)
        ;

        
    
    
            var poly_line_37b8fdab5e0ce0fa042af965d64b6642 = L.polyline(
                [[41.9006654, -87.6574133], [41.9006745, -87.6567852], [41.9006749, -87.6567555]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b4fa9b980dab6869e1a7e9733391aab1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d9d92078cfc282c7e64e8e28af11b5bc = $(`<div id=&quot;html_d9d92078cfc282c7e64e8e28af11b5bc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11735383559 → 11967979324 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24071514&quot; target=&quot;_blank&quot;>24071514</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>54.45169591872689</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Cortez Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_b4fa9b980dab6869e1a7e9733391aab1.setContent(html_d9d92078cfc282c7e64e8e28af11b5bc);
            
        

        poly_line_37b8fdab5e0ce0fa042af965d64b6642.bindPopup(popup_b4fa9b980dab6869e1a7e9733391aab1)
        ;

        
    
    
            var poly_line_14407e10926bd20badf9350e2409acc4 = L.polyline(
                [[41.9006654, -87.6574133], [41.9007475, -87.6574172], [41.9008681, -87.657423]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a4438170f7f1bb2ddaee86fd43cb2323 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5e95bdd2f2a4a6ce4fcbb050b9f24a04 = $(`<div id=&quot;html_5e95bdd2f2a4a6ce4fcbb050b9f24a04&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11735383559 → 11735383562 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1263092969&quot; target=&quot;_blank&quot;>1263092969</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.553536443674776</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_a4438170f7f1bb2ddaee86fd43cb2323.setContent(html_5e95bdd2f2a4a6ce4fcbb050b9f24a04);
            
        

        poly_line_14407e10926bd20badf9350e2409acc4.bindPopup(popup_a4438170f7f1bb2ddaee86fd43cb2323)
        ;

        
    
    
            var poly_line_1a5636ab3132966de2eb892aca6091b1 = L.polyline(
                [[41.9013541, -87.6574461], [41.9010404, -87.6574311]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4b5c8b08e0742b83daafe243838274c0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6f51510243bc8488063e398598465179 = $(`<div id=&quot;html_6f51510243bc8488063e398598465179&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11735383560 → 11735383565 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1263092969&quot; target=&quot;_blank&quot;>1263092969</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>34.903981846206484</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_4b5c8b08e0742b83daafe243838274c0.setContent(html_6f51510243bc8488063e398598465179);
            
        

        poly_line_1a5636ab3132966de2eb892aca6091b1.bindPopup(popup_4b5c8b08e0742b83daafe243838274c0)
        ;

        
    
    
            var poly_line_f5cec5f191ce05ea3d90a3ea52912957 = L.polyline(
                [[41.9008681, -87.657423], [41.9010404, -87.6574311]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f6c405c1eb9f33287b8c46f5284340fe = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a173a82880721058f5a53715a85c377e = $(`<div id=&quot;html_a173a82880721058f5a53715a85c377e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11735383562 → 11735383565 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1263092969&quot; target=&quot;_blank&quot;>1263092969</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.170637687761097</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_f6c405c1eb9f33287b8c46f5284340fe.setContent(html_a173a82880721058f5a53715a85c377e);
            
        

        poly_line_f5cec5f191ce05ea3d90a3ea52912957.bindPopup(popup_f6c405c1eb9f33287b8c46f5284340fe)
        ;

        
    
    
            var poly_line_72f2b89498cc145153e81c43000c8905 = L.polyline(
                [[41.9008681, -87.657423], [41.9008603, -87.6578814], [41.9010341, -87.6578867], [41.9010404, -87.6574311]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_bb86acd023f7c447eb4a6278cd051e7b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_74f47deeaf92e5bbb407eae3e0b2617a = $(`<div id=&quot;html_74f47deeaf92e5bbb407eae3e0b2617a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11735383562 → 11735383565 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1263092970&quot; target=&quot;_blank&quot;>1263092970</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>94.99207574440408</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_bb86acd023f7c447eb4a6278cd051e7b.setContent(html_74f47deeaf92e5bbb407eae3e0b2617a);
            
        

        poly_line_72f2b89498cc145153e81c43000c8905.bindPopup(popup_bb86acd023f7c447eb4a6278cd051e7b)
        ;

        
    
    
            var poly_line_4d074a6481c77877b6e07144a2bf8561 = L.polyline(
                [[41.9008681, -87.657423], [41.9007475, -87.6574172], [41.9006654, -87.6574133]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_52fa55af1e635d781498bce1b0d6dc4f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_78f88ca10316995445d013946114e6b0 = $(`<div id=&quot;html_78f88ca10316995445d013946114e6b0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11735383562 → 11735383559 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1263092969&quot; target=&quot;_blank&quot;>1263092969</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.553536443674776</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_52fa55af1e635d781498bce1b0d6dc4f.setContent(html_78f88ca10316995445d013946114e6b0);
            
        

        poly_line_4d074a6481c77877b6e07144a2bf8561.bindPopup(popup_52fa55af1e635d781498bce1b0d6dc4f)
        ;

        
    
    
            var poly_line_84d995d5378f6f89142828b2eacebcf4 = L.polyline(
                [[41.9010404, -87.6574311], [41.9013541, -87.6574461]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3e127e71d9dbfcca8827dc8786fbd6b0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_bc128c202456fa16c8f87fc0b31aecaf = $(`<div id=&quot;html_bc128c202456fa16c8f87fc0b31aecaf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11735383565 → 11735383560 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1263092969&quot; target=&quot;_blank&quot;>1263092969</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>34.903981846206484</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_3e127e71d9dbfcca8827dc8786fbd6b0.setContent(html_bc128c202456fa16c8f87fc0b31aecaf);
            
        

        poly_line_84d995d5378f6f89142828b2eacebcf4.bindPopup(popup_3e127e71d9dbfcca8827dc8786fbd6b0)
        ;

        
    
    
            var poly_line_710b0620c20570cfced599230d685849 = L.polyline(
                [[41.9010404, -87.6574311], [41.9008681, -87.657423]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9e3bbd27b0017f9c2ce5cc4e0d11f067 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2a8287595654f32710004ea1797e90e8 = $(`<div id=&quot;html_2a8287595654f32710004ea1797e90e8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11735383565 → 11735383562 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1263092969&quot; target=&quot;_blank&quot;>1263092969</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.170637687761097</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_9e3bbd27b0017f9c2ce5cc4e0d11f067.setContent(html_2a8287595654f32710004ea1797e90e8);
            
        

        poly_line_710b0620c20570cfced599230d685849.bindPopup(popup_9e3bbd27b0017f9c2ce5cc4e0d11f067)
        ;

        
    
    
            var poly_line_db9a6b463bc1eb0181e06f15cc05ae28 = L.polyline(
                [[41.9010404, -87.6574311], [41.9010341, -87.6578867], [41.9008603, -87.6578814], [41.9008681, -87.657423]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c35c27df13deccad769e3bd77ffb4492 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9db7c1c96960dbc53e85305c1df6bc8f = $(`<div id=&quot;html_9db7c1c96960dbc53e85305c1df6bc8f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11735383565 → 11735383562 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1263092970&quot; target=&quot;_blank&quot;>1263092970</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>94.99207574440408</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_c35c27df13deccad769e3bd77ffb4492.setContent(html_9db7c1c96960dbc53e85305c1df6bc8f);
            
        

        poly_line_db9a6b463bc1eb0181e06f15cc05ae28.bindPopup(popup_c35c27df13deccad769e3bd77ffb4492)
        ;

        
    
    
            var poly_line_c3a5af6f75c997156bfe8c5ea9151c05 = L.polyline(
                [[41.9006493, -87.6586168], [41.9006488, -87.6586696]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_98368b17d1b105f73aadd79035a16ae5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_bd4d73e91fea1b97299f76632745330f = $(`<div id=&quot;html_bd4d73e91fea1b97299f76632745330f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11735383566 → 365026537 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1126560639&quot; target=&quot;_blank&quot;>1126560639</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>4.370237080665664</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Cortez Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_98368b17d1b105f73aadd79035a16ae5.setContent(html_bd4d73e91fea1b97299f76632745330f);
            
        

        poly_line_c3a5af6f75c997156bfe8c5ea9151c05.bindPopup(popup_98368b17d1b105f73aadd79035a16ae5)
        ;

        
    
    
            var poly_line_cfb63163ed12aaeeb08ae616d8c1ce50 = L.polyline(
                [[41.9006493, -87.6586168], [41.900652, -87.6583398]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8a22a4cee509dd6d74383a1dc10431ed = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_780bc56ed007d54b8f1a10dfea783583 = $(`<div id=&quot;html_780bc56ed007d54b8f1a10dfea783583&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11735383566 → 5479954576 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1126560639&quot; target=&quot;_blank&quot;>1126560639</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.927300547381837</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Cortez Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_8a22a4cee509dd6d74383a1dc10431ed.setContent(html_780bc56ed007d54b8f1a10dfea783583);
            
        

        poly_line_cfb63163ed12aaeeb08ae616d8c1ce50.bindPopup(popup_8a22a4cee509dd6d74383a1dc10431ed)
        ;

        
    
    
            var poly_line_1cfa6bf78f10c36a56419abef507b145 = L.polyline(
                [[41.9006493, -87.6586168], [41.9007316, -87.6586189], [41.900902, -87.6586231]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_10bef5868d7bd9d6e87a1e59f93ce239 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_37772b6a552f23d6b8ca1ebdd8f072ed = $(`<div id=&quot;html_37772b6a552f23d6b8ca1ebdd8f072ed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11735383566 → 11735383567 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1263092971&quot; target=&quot;_blank&quot;>1263092971</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>28.103836134964425</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_10bef5868d7bd9d6e87a1e59f93ce239.setContent(html_37772b6a552f23d6b8ca1ebdd8f072ed);
            
        

        poly_line_1cfa6bf78f10c36a56419abef507b145.bindPopup(popup_10bef5868d7bd9d6e87a1e59f93ce239)
        ;

        
    
    
            var poly_line_6d600e48938876c2d271ca11829f4198 = L.polyline(
                [[41.900902, -87.6586231], [41.9009012, -87.6584435]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ad1d2964524bc283d090794e908c3722 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ac03e9371eb16e5096ac48fc53d93ada = $(`<div id=&quot;html_ac03e9371eb16e5096ac48fc53d93ada&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11735383567 → 11735418071 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1263092971&quot; target=&quot;_blank&quot;>1263092971</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>14.8644320404833</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_ad1d2964524bc283d090794e908c3722.setContent(html_ac03e9371eb16e5096ac48fc53d93ada);
            
        

        poly_line_6d600e48938876c2d271ca11829f4198.bindPopup(popup_ad1d2964524bc283d090794e908c3722)
        ;

        
    
    
            var poly_line_ef30f937de7f5bebc360db1aa93625ce = L.polyline(
                [[41.900902, -87.6586231], [41.900902, -87.6588873], [41.9012, -87.6589739], [41.9012055, -87.6584424], [41.9010294, -87.658443]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f7f842ddcb873aedf3bf09295adae767 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_25afaa88266ec53654dbdb84a048e0fd = $(`<div id=&quot;html_25afaa88266ec53654dbdb84a048e0fd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11735383567 → 11735418076 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1263092971&quot; target=&quot;_blank&quot;>1263092971</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>119.3421720999022</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_f7f842ddcb873aedf3bf09295adae767.setContent(html_25afaa88266ec53654dbdb84a048e0fd);
            
        

        poly_line_ef30f937de7f5bebc360db1aa93625ce.bindPopup(popup_f7f842ddcb873aedf3bf09295adae767)
        ;

        
    
    
            var poly_line_568f8b76894ad89d4fd1e17c7d476914 = L.polyline(
                [[41.900902, -87.6586231], [41.9007316, -87.6586189], [41.9006493, -87.6586168]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0069185b5c0df6e68658e8763d095576 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_23278673b818111fd6c7e7b7a321ac0b = $(`<div id=&quot;html_23278673b818111fd6c7e7b7a321ac0b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11735383567 → 11735383566 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1263092971&quot; target=&quot;_blank&quot;>1263092971</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>28.103836134964425</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_0069185b5c0df6e68658e8763d095576.setContent(html_23278673b818111fd6c7e7b7a321ac0b);
            
        

        poly_line_568f8b76894ad89d4fd1e17c7d476914.bindPopup(popup_0069185b5c0df6e68658e8763d095576)
        ;

        
    
    
            var poly_line_b74facd1e96fc11eaa8fb91db9ed34ba = L.polyline(
                [[41.9009012, -87.6584435], [41.900902, -87.6586231]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fe201a9b0a68f1d385f54f483afaf2bd = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7964a546f931aa7e303cbba9f8cf10aa = $(`<div id=&quot;html_7964a546f931aa7e303cbba9f8cf10aa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11735418071 → 11735383567 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1263092971&quot; target=&quot;_blank&quot;>1263092971</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>14.8644320404833</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_fe201a9b0a68f1d385f54f483afaf2bd.setContent(html_7964a546f931aa7e303cbba9f8cf10aa);
            
        

        poly_line_b74facd1e96fc11eaa8fb91db9ed34ba.bindPopup(popup_fe201a9b0a68f1d385f54f483afaf2bd)
        ;

        
    
    
            var poly_line_20c3b60d5bfa870f2e1fed75c9b49377 = L.polyline(
                [[41.9009012, -87.6584435], [41.9010294, -87.658443]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_786ab2be20a89a21c9d4edb7680f3f36 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b6a467827c8fdbbd29c93b8053c1af7d = $(`<div id=&quot;html_b6a467827c8fdbbd29c93b8053c1af7d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11735418071 → 11735418076 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1263092971&quot; target=&quot;_blank&quot;>1263092971</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>14.255269795812156</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_786ab2be20a89a21c9d4edb7680f3f36.setContent(html_b6a467827c8fdbbd29c93b8053c1af7d);
            
        

        poly_line_20c3b60d5bfa870f2e1fed75c9b49377.bindPopup(popup_786ab2be20a89a21c9d4edb7680f3f36)
        ;

        
    
    
            var poly_line_ad1e3b02638a39c3936f19cb511ea8e3 = L.polyline(
                [[41.9009012, -87.6584435], [41.9008516, -87.6584424], [41.9008563, -87.6579934], [41.9010356, -87.6579997], [41.9010294, -87.658443]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fe0e7516eb55441aed2e3ea658a5ba5b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_238505127db419814238d40fd80b17d5 = $(`<div id=&quot;html_238505127db419814238d40fd80b17d5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11735418071 → 11735418076 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1263092972&quot; target=&quot;_blank&quot;>1263092972</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>99.31930919654394</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_fe0e7516eb55441aed2e3ea658a5ba5b.setContent(html_238505127db419814238d40fd80b17d5);
            
        

        poly_line_ad1e3b02638a39c3936f19cb511ea8e3.bindPopup(popup_fe0e7516eb55441aed2e3ea658a5ba5b)
        ;

        
    
    
            var poly_line_e9174c7cd9439c588c618934bcfefff1 = L.polyline(
                [[41.9010294, -87.658443], [41.9009012, -87.6584435]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_84f43bd9628ff5fb48e13ff76584e4d2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_eef15a9cf72ac17443e31fe49b928817 = $(`<div id=&quot;html_eef15a9cf72ac17443e31fe49b928817&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11735418076 → 11735418071 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1263092971&quot; target=&quot;_blank&quot;>1263092971</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>14.255269795812156</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_84f43bd9628ff5fb48e13ff76584e4d2.setContent(html_eef15a9cf72ac17443e31fe49b928817);
            
        

        poly_line_e9174c7cd9439c588c618934bcfefff1.bindPopup(popup_84f43bd9628ff5fb48e13ff76584e4d2)
        ;

        
    
    
            var poly_line_0fea0cf467634eabad05a47b5d0cef5f = L.polyline(
                [[41.9010294, -87.658443], [41.9010356, -87.6579997], [41.9008563, -87.6579934], [41.9008516, -87.6584424], [41.9009012, -87.6584435]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ea8c99a5ad791d03c52662516708d811 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8009d389d05aa8e1c69e191dfdbc21a0 = $(`<div id=&quot;html_8009d389d05aa8e1c69e191dfdbc21a0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11735418076 → 11735418071 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1263092972&quot; target=&quot;_blank&quot;>1263092972</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>99.31930919654395</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_ea8c99a5ad791d03c52662516708d811.setContent(html_8009d389d05aa8e1c69e191dfdbc21a0);
            
        

        poly_line_0fea0cf467634eabad05a47b5d0cef5f.bindPopup(popup_ea8c99a5ad791d03c52662516708d811)
        ;

        
    
    
            var poly_line_49a9f5c3249951f706ce9bd137f6c9f1 = L.polyline(
                [[41.9010294, -87.658443], [41.9012055, -87.6584424], [41.9012, -87.6589739], [41.900902, -87.6588873], [41.900902, -87.6586231]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_db3b08d8a53c9022d0a35323051b1a6f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9870c9a9d99f50d6e4e5f066880af3d6 = $(`<div id=&quot;html_9870c9a9d99f50d6e4e5f066880af3d6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11735418076 → 11735383567 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1263092971&quot; target=&quot;_blank&quot;>1263092971</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>119.3421720999022</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_db3b08d8a53c9022d0a35323051b1a6f.setContent(html_9870c9a9d99f50d6e4e5f066880af3d6);
            
        

        poly_line_49a9f5c3249951f706ce9bd137f6c9f1.bindPopup(popup_db3b08d8a53c9022d0a35323051b1a6f)
        ;

        
    
    
            var poly_line_ed1beda0454f07b2c03201969b8281eb = L.polyline(
                [[41.9033305, -87.6552863], [41.9032898, -87.6552536]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fcd8590defe15fb0d9a4b3e793e04bd5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9794734f6342a04296d76b8180205b65 = $(`<div id=&quot;html_9794734f6342a04296d76b8180205b65&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11751927229 → 12192087599 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273623183&quot; target=&quot;_blank&quot;>273623183</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>5.273056700126758</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_fcd8590defe15fb0d9a4b3e793e04bd5.setContent(html_9794734f6342a04296d76b8180205b65);
            
        

        poly_line_ed1beda0454f07b2c03201969b8281eb.bindPopup(popup_fcd8590defe15fb0d9a4b3e793e04bd5)
        ;

        
    
    
            var poly_line_4b133b2a5ff1b589c22679f1f7770a20 = L.polyline(
                [[41.9033305, -87.6552863], [41.9034428, -87.6553769], [41.903534, -87.6554481]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a01040727f1020a4d4028dbb23c7e01e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0d08dd05c8377be14a283a1916b18d5c = $(`<div id=&quot;html_0d08dd05c8377be14a283a1916b18d5c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11751927229 → 262368116 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273623183&quot; target=&quot;_blank&quot;>273623183</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>26.294014290518056</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_a01040727f1020a4d4028dbb23c7e01e.setContent(html_0d08dd05c8377be14a283a1916b18d5c);
            
        

        poly_line_4b133b2a5ff1b589c22679f1f7770a20.bindPopup(popup_a01040727f1020a4d4028dbb23c7e01e)
        ;

        
    
    
            var poly_line_b8b8ef9d0dc3dd4914d7871860296346 = L.polyline(
                [[41.9033305, -87.6552863], [41.9033046, -87.6553425], [41.9032726, -87.6554223]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_edf9ef037220059a4313356d148c8dcc = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2873fa061d09c8ad008297e333685726 = $(`<div id=&quot;html_2873fa061d09c8ad008297e333685726&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11751927229 → 11751927228 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1265023785&quot; target=&quot;_blank&quot;>1265023785</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>12.972308611857741</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_edf9ef037220059a4313356d148c8dcc.setContent(html_2873fa061d09c8ad008297e333685726);
            
        

        poly_line_b8b8ef9d0dc3dd4914d7871860296346.bindPopup(popup_edf9ef037220059a4313356d148c8dcc)
        ;

        
    
    
            var poly_line_b8085ab7192265e68b6ddb8312e87de7 = L.polyline(
                [[41.9034985, -87.6579978], [41.903467, -87.6578806]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b6695074f932dbc26b3433d5d65e4916 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7c3fec99dea42a7276b7a5a8e0a44fe5 = $(`<div id=&quot;html_7c3fec99dea42a7276b7a5a8e0a44fe5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11751927278 → 11751927284 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1265023014&quot; target=&quot;_blank&quot;>1265023014</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>10.312449844546842</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_b6695074f932dbc26b3433d5d65e4916.setContent(html_7c3fec99dea42a7276b7a5a8e0a44fe5);
            
        

        poly_line_b8085ab7192265e68b6ddb8312e87de7.bindPopup(popup_b6695074f932dbc26b3433d5d65e4916)
        ;

        
    
    
            var poly_line_77ba09efe2775d0628aef4beac321dec = L.polyline(
                [[41.9034985, -87.6579978], [41.9034962, -87.6581325], [41.9034938, -87.6582399]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e54d1998de3fad739c3d3040c6a32b11 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_702162e60fae8b385fd623fc8abb7d79 = $(`<div id=&quot;html_702162e60fae8b385fd623fc8abb7d79&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11751927278 → 12187280074 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820033&quot; target=&quot;_blank&quot;>1316820033</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.0429538512532</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_e54d1998de3fad739c3d3040c6a32b11.setContent(html_702162e60fae8b385fd623fc8abb7d79);
            
        

        poly_line_77ba09efe2775d0628aef4beac321dec.bindPopup(popup_e54d1998de3fad739c3d3040c6a32b11)
        ;

        
    
    
            var poly_line_f0a4e96358f97dc1aab2fd577f7e9433 = L.polyline(
                [[41.903514, -87.6567548], [41.9035381, -87.6569342], [41.9035354, -87.6571154], [41.9035295, -87.6577045], [41.9035247, -87.6578852], [41.9034985, -87.6579978]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ed49bc0b23fb92e2df903cb20162739e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8bd99df5f5975923f2cce5cd6e8cab15 = $(`<div id=&quot;html_8bd99df5f5975923f2cce5cd6e8cab15&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11751927279 → 11751927278 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1265023010&quot; target=&quot;_blank&quot;>1265023010</a>, <a href=&quot;https://www.openstreetmap.org/way/1265023011&quot; target=&quot;_blank&quot;>1265023011</a>, <a href=&quot;https://www.openstreetmap.org/way/24231479&quot; target=&quot;_blank&quot;>24231479</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>bridge</td><td style='padding:2px 6px;'>movable</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>103.57132599871392</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_ed49bc0b23fb92e2df903cb20162739e.setContent(html_8bd99df5f5975923f2cce5cd6e8cab15);
            
        

        poly_line_f0a4e96358f97dc1aab2fd577f7e9433.bindPopup(popup_ed49bc0b23fb92e2df903cb20162739e)
        ;

        
    
    
            var poly_line_cbacb3f77b6aa9b170543140fbde5e79 = L.polyline(
                [[41.903514, -87.6567548], [41.9035323, -87.6555632], [41.903534, -87.6554481]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a53b1169a813a363061e6575b2c0ca33 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8e8d424f9e9835d8e897c3cfcea140ef = $(`<div id=&quot;html_8e8d424f9e9835d8e897c3cfcea140ef&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11751927279 → 262368116 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1274943578&quot; target=&quot;_blank&quot;>1274943578</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>108.16433629832518</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_a53b1169a813a363061e6575b2c0ca33.setContent(html_8e8d424f9e9835d8e897c3cfcea140ef);
            
        

        poly_line_cbacb3f77b6aa9b170543140fbde5e79.bindPopup(popup_a53b1169a813a363061e6575b2c0ca33)
        ;

        
    
    
            var poly_line_eb343635438c9301dbf81b361abbd204 = L.polyline(
                [[41.903467, -87.6578806], [41.9034691, -87.6577035], [41.9034772, -87.6571153], [41.9034783, -87.6569302], [41.903514, -87.6567548]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3114b5b7bf9899acad5f02718f8101ee = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ed7a737dc7a1116a37da92206a27fcbe = $(`<div id=&quot;html_ed7a737dc7a1116a37da92206a27fcbe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11751927284 → 11751927279 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1265023012&quot; target=&quot;_blank&quot;>1265023012</a>, <a href=&quot;https://www.openstreetmap.org/way/1265023013&quot; target=&quot;_blank&quot;>1265023013</a>, <a href=&quot;https://www.openstreetmap.org/way/1265023014&quot; target=&quot;_blank&quot;>1265023014</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>bridge</td><td style='padding:2px 6px;'>movable</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>93.71407971759547</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_3114b5b7bf9899acad5f02718f8101ee.setContent(html_ed7a737dc7a1116a37da92206a27fcbe);
            
        

        poly_line_eb343635438c9301dbf81b361abbd204.bindPopup(popup_3114b5b7bf9899acad5f02718f8101ee)
        ;

        
    
    
            var poly_line_f06918e52c5d8654f70924d82e02065d = L.polyline(
                [[41.9110543, -87.6434462], [41.9109766, -87.6434437]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_72fc136b35d5d3b0cd59aaf2388e5e0f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_da793b7256da41155710003aa6e8753b = $(`<div id=&quot;html_da793b7256da41155710003aa6e8753b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11891745313 → 11891745315 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1311091787&quot; target=&quot;_blank&quot;>1311091787</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>8.64233435559504</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_72fc136b35d5d3b0cd59aaf2388e5e0f.setContent(html_da793b7256da41155710003aa6e8753b);
            
        

        poly_line_f06918e52c5d8654f70924d82e02065d.bindPopup(popup_72fc136b35d5d3b0cd59aaf2388e5e0f)
        ;

        
    
    
            var poly_line_8717fed30af62fe8bb42830ae2c99b18 = L.polyline(
                [[41.9110543, -87.6434462], [41.9110481, -87.6436372], [41.9110402, -87.6438819], [41.9110191, -87.6443629]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_88857896390ebb709d917fa4c789559b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_84f3df394405a9e8793fecece2df04dd = $(`<div id=&quot;html_84f3df394405a9e8793fecece2df04dd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11891745313 → 262368937 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1281217246&quot; target=&quot;_blank&quot;>1281217246</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>primary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>75.9596103360968</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West North Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>ref</td><td style='padding:2px 6px;'>IL 64</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_88857896390ebb709d917fa4c789559b.setContent(html_84f3df394405a9e8793fecece2df04dd);
            
        

        poly_line_8717fed30af62fe8bb42830ae2c99b18.bindPopup(popup_88857896390ebb709d917fa4c789559b)
        ;

        
    
    
            var poly_line_e177771180da46189b784ddfdc73eb0d = L.polyline(
                [[41.9109766, -87.6434437], [41.9110543, -87.6434462]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_983aff704b43f0a559bf1f9db23fdbae = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_bf34b00c9ed22dfd6403bff571ce1e58 = $(`<div id=&quot;html_bf34b00c9ed22dfd6403bff571ce1e58&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11891745315 → 11891745313 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1311091787&quot; target=&quot;_blank&quot;>1311091787</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>8.64233435559504</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_983aff704b43f0a559bf1f9db23fdbae.setContent(html_bf34b00c9ed22dfd6403bff571ce1e58);
            
        

        poly_line_e177771180da46189b784ddfdc73eb0d.bindPopup(popup_983aff704b43f0a559bf1f9db23fdbae)
        ;

        
    
    
            var poly_line_d79426957922a2d6cb4b9965b23160cb = L.polyline(
                [[41.9109766, -87.6434437], [41.910914, -87.6434411], [41.9106648, -87.6434312]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_27d9aa87af84af04ea2ec97f79a0ec5f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_262c5fd669afffd19dca4550c72db24d = $(`<div id=&quot;html_262c5fd669afffd19dca4550c72db24d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11891745315 → 2387195193 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1311091786&quot; target=&quot;_blank&quot;>1311091786</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>34.68605854563205</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_27d9aa87af84af04ea2ec97f79a0ec5f.setContent(html_262c5fd669afffd19dca4550c72db24d);
            
        

        poly_line_d79426957922a2d6cb4b9965b23160cb.bindPopup(popup_27d9aa87af84af04ea2ec97f79a0ec5f)
        ;

        
    
    
            var poly_line_5aa511cb7049f578580fc1b897323743 = L.polyline(
                [[41.910996, -87.6458528], [41.9109945, -87.6459477], [41.9109921, -87.6461045], [41.9109546, -87.6462671]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_804d716a7c6c62388ff837078221db6d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_aec0bc1cdc9c430aaadaeb4fa9c28d7c = $(`<div id=&quot;html_aec0bc1cdc9c430aaadaeb4fa9c28d7c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11891745322 → 12195807207 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1281217244&quot; target=&quot;_blank&quot;>1281217244</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>primary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>34.918967201021104</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West North Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>ref</td><td style='padding:2px 6px;'>IL 64</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_804d716a7c6c62388ff837078221db6d.setContent(html_aec0bc1cdc9c430aaadaeb4fa9c28d7c);
            
        

        poly_line_5aa511cb7049f578580fc1b897323743.bindPopup(popup_804d716a7c6c62388ff837078221db6d)
        ;

        
    
    
            var poly_line_129aa965511bd15eb7b1345b26106777 = L.polyline(
                [[41.9109515, -87.646488], [41.9109546, -87.6462671]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_33edc624397085bd4b00134dd60c211d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5ca56450f98119e6f13894bb2142ca7e = $(`<div id=&quot;html_5ca56450f98119e6f13894bb2142ca7e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11891745323 → 12195807207 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317723649&quot; target=&quot;_blank&quot;>1317723649</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>primary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.282633671589384</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West North Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>ref</td><td style='padding:2px 6px;'>IL 64</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_33edc624397085bd4b00134dd60c211d.setContent(html_5ca56450f98119e6f13894bb2142ca7e);
            
        

        poly_line_129aa965511bd15eb7b1345b26106777.bindPopup(popup_33edc624397085bd4b00134dd60c211d)
        ;

        
    
    
            var poly_line_4670fe9606326a3302ac1d2035d21825 = L.polyline(
                [[41.9109515, -87.646488], [41.9109496, -87.6466262]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5d94cfbcdae3ce42625b195b9eb33684 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_594413ca89f7b6f06588b1fa3856f01f = $(`<div id=&quot;html_594413ca89f7b6f06588b1fa3856f01f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11891745323 → 12195807204 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1491049982&quot; target=&quot;_blank&quot;>1491049982</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>primary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>11.437944758653972</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West North Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>ref</td><td style='padding:2px 6px;'>IL 64</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_5d94cfbcdae3ce42625b195b9eb33684.setContent(html_594413ca89f7b6f06588b1fa3856f01f);
            
        

        poly_line_4670fe9606326a3302ac1d2035d21825.bindPopup(popup_5d94cfbcdae3ce42625b195b9eb33684)
        ;

        
    
    
            var poly_line_28fdb978d3ec985c079e9dd1b5922e7c = L.polyline(
                [[41.9109515, -87.646488], [41.9110318, -87.6464923], [41.9111501, -87.6464933]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0b25f4f4f5c0027f50d3cb8005da8ce2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_dea8a138b3bf647062bec9fd64e89411 = $(`<div id=&quot;html_dea8a138b3bf647062bec9fd64e89411&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11891745323 → 5493365221 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571634494&quot; target=&quot;_blank&quot;>571634494</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.090690933845334</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_0b25f4f4f5c0027f50d3cb8005da8ce2.setContent(html_dea8a138b3bf647062bec9fd64e89411);
            
        

        poly_line_28fdb978d3ec985c079e9dd1b5922e7c.bindPopup(popup_0b25f4f4f5c0027f50d3cb8005da8ce2)
        ;

        
    
    
            var poly_line_f38ff3cc3bfb8b19d65adf7c4fe8fa81 = L.polyline(
                [[41.9109152, -87.6488469], [41.9109966, -87.6488473], [41.9111281, -87.6488523], [41.9111159, -87.649452], [41.9111589, -87.6495269]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3067c4b49b51d328ee4a0073e5912bbf = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0c41267048f12c40e0cf8a1a0c754865 = $(`<div id=&quot;html_0c41267048f12c40e0cf8a1a0c754865&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11891975100 → 2504524035 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/243012954&quot; target=&quot;_blank&quot;>243012954</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>81.15057786985196</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_3067c4b49b51d328ee4a0073e5912bbf.setContent(html_0c41267048f12c40e0cf8a1a0c754865);
            
        

        poly_line_f38ff3cc3bfb8b19d65adf7c4fe8fa81.bindPopup(popup_3067c4b49b51d328ee4a0073e5912bbf)
        ;

        
    
    
            var poly_line_488500c38eed382a0075ed5c32049fca = L.polyline(
                [[41.9109152, -87.6488469], [41.9109063, -87.649345], [41.9109035, -87.6495013]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7ca116ee1a5cbb87dcccf49f7d8d9258 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_13273eeb58efe6d1726e5a8191d789b6 = $(`<div id=&quot;html_13273eeb58efe6d1726e5a8191d789b6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11891975100 → 11891975106 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1281243500&quot; target=&quot;_blank&quot;>1281243500</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>primary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>54.16699270149694</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West North Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>ref</td><td style='padding:2px 6px;'>IL 64</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_7ca116ee1a5cbb87dcccf49f7d8d9258.setContent(html_13273eeb58efe6d1726e5a8191d789b6);
            
        

        poly_line_488500c38eed382a0075ed5c32049fca.bindPopup(popup_7ca116ee1a5cbb87dcccf49f7d8d9258)
        ;

        
    
    
            var poly_line_85b407a0496e98be93c16e96c3117af1 = L.polyline(
                [[41.9109152, -87.6488469], [41.9109168, -87.6487685], [41.9109185, -87.6486852], [41.9109197, -87.6486274], [41.9109244, -87.6483968], [41.9109266, -87.6482861]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c52cdab96517911ed42a127d1a155cf6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b49c2616e44892cfea54044b00c4cb17 = $(`<div id=&quot;html_b49c2616e44892cfea54044b00c4cb17&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11891975100 → 35313351 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1281243497&quot; target=&quot;_blank&quot;>1281243497</a>, <a href=&quot;https://www.openstreetmap.org/way/1324992983&quot; target=&quot;_blank&quot;>1324992983</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>primary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>['5', '4']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>46.423304446853024</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West North Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>ref</td><td style='padding:2px 6px;'>IL 64</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_c52cdab96517911ed42a127d1a155cf6.setContent(html_b49c2616e44892cfea54044b00c4cb17);
            
        

        poly_line_85b407a0496e98be93c16e96c3117af1.bindPopup(popup_c52cdab96517911ed42a127d1a155cf6)
        ;

        
    
    
            var poly_line_36a37865b04e18e2c9e346ee11d7752f = L.polyline(
                [[41.9109035, -87.6495013], [41.9107581, -87.6494967], [41.9105669, -87.6494928]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_47118450949ae16744437ea6fcb14676 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0356c790f78bdac67a3ff1b8d2fe0094 = $(`<div id=&quot;html_0356c790f78bdac67a3ff1b8d2fe0094&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11891975106 → 4679315322 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/240891836&quot; target=&quot;_blank&quot;>240891836</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>37.43519476839443</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Dayton Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_47118450949ae16744437ea6fcb14676.setContent(html_0356c790f78bdac67a3ff1b8d2fe0094);
            
        

        poly_line_36a37865b04e18e2c9e346ee11d7752f.bindPopup(popup_47118450949ae16744437ea6fcb14676)
        ;

        
    
    
            var poly_line_a4c5b3063a60d15df68870a7a0c75f0a = L.polyline(
                [[41.9109035, -87.6495013], [41.9109842, -87.649615], [41.9111141, -87.6498037]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f522cba82d253cec9da39cfc5848c8c2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b0f871359807889c96766c3131fb57c6 = $(`<div id=&quot;html_b0f871359807889c96766c3131fb57c6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11891975106 → 2504524030 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/253740817&quot; target=&quot;_blank&quot;>253740817</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>5</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>34.27280986783798</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Clybourn Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_f522cba82d253cec9da39cfc5848c8c2.setContent(html_b0f871359807889c96766c3131fb57c6);
            
        

        poly_line_a4c5b3063a60d15df68870a7a0c75f0a.bindPopup(popup_f522cba82d253cec9da39cfc5848c8c2)
        ;

        
    
    
            var poly_line_170e3a7332b52002103dfecfc492bc58 = L.polyline(
                [[41.9109035, -87.6495013], [41.9107661, -87.6493012], [41.9106658, -87.6491626], [41.9105638, -87.6490218], [41.9104725, -87.6488958], [41.910321, -87.6486868], [41.9102744, -87.6486225], [41.9102276, -87.6485579]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d0637299eb4e4a1b205feaa3a6aa6c52 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_04fae32d8dc238462aff97c8211556e9 = $(`<div id=&quot;html_04fae32d8dc238462aff97c8211556e9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11891975106 → 2903243954 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/372671692&quot; target=&quot;_blank&quot;>372671692</a>, <a href=&quot;https://www.openstreetmap.org/way/435393422&quot; target=&quot;_blank&quot;>435393422</a>, <a href=&quot;https://www.openstreetmap.org/way/435832375&quot; target=&quot;_blank&quot;>435832375</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>['5', '4']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>108.37108179234258</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Clybourn Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_d0637299eb4e4a1b205feaa3a6aa6c52.setContent(html_04fae32d8dc238462aff97c8211556e9);
            
        

        poly_line_170e3a7332b52002103dfecfc492bc58.bindPopup(popup_d0637299eb4e4a1b205feaa3a6aa6c52)
        ;

        
    
    
            var poly_line_b0bd811df052742a901cf6793d8788d8 = L.polyline(
                [[41.9109035, -87.6495013], [41.9109063, -87.649345], [41.9109152, -87.6488469]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4b39c3b73c069d1a8d0c4871660a0ba8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3574dbc1a379a52c14c29fd34d817499 = $(`<div id=&quot;html_3574dbc1a379a52c14c29fd34d817499&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11891975106 → 11891975100 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1281243500&quot; target=&quot;_blank&quot;>1281243500</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>primary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>54.16699270149694</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West North Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>ref</td><td style='padding:2px 6px;'>IL 64</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_4b39c3b73c069d1a8d0c4871660a0ba8.setContent(html_3574dbc1a379a52c14c29fd34d817499);
            
        

        poly_line_b0bd811df052742a901cf6793d8788d8.bindPopup(popup_4b39c3b73c069d1a8d0c4871660a0ba8)
        ;

        
    
    
            var poly_line_e8a3bf651728624899c8902ef436f49c = L.polyline(
                [[41.9109035, -87.6495013], [41.9109025, -87.6496898], [41.9108957, -87.6499994], [41.9108916, -87.6502592]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_bb2e5aa3428b5ab6d6ab6d5de3aee1ee = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9abeadd448964eaed82dbfa7991b95df = $(`<div id=&quot;html_9abeadd448964eaed82dbfa7991b95df&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11891975106 → 12195807201 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1326482130&quot; target=&quot;_blank&quot;>1326482130</a>, <a href=&quot;https://www.openstreetmap.org/way/1281243502&quot; target=&quot;_blank&quot;>1281243502</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>primary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>['5', '4']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>62.732351492435846</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West North Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>ref</td><td style='padding:2px 6px;'>IL 64</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_bb2e5aa3428b5ab6d6ab6d5de3aee1ee.setContent(html_9abeadd448964eaed82dbfa7991b95df);
            
        

        poly_line_e8a3bf651728624899c8902ef436f49c.bindPopup(popup_bb2e5aa3428b5ab6d6ab6d5de3aee1ee)
        ;

        
    
    
            var poly_line_9231909b5e9f8bafddd1de216becddd0 = L.polyline(
                [[41.9108844, -87.6507236], [41.9109676, -87.6507339], [41.9110228, -87.6507832], [41.9110473, -87.6507956], [41.9110723, -87.6507965], [41.9110873, -87.6507894]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8045a29d22125b195c10136b395d8485 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a7c8652060a7902350117757883a1f53 = $(`<div id=&quot;html_a7c8652060a7902350117757883a1f53&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11891975116 → 2109658713 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/201015475&quot; target=&quot;_blank&quot;>201015475</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>access</td><td style='padding:2px 6px;'>customers</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>24.12100663189371</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_8045a29d22125b195c10136b395d8485.setContent(html_a7c8652060a7902350117757883a1f53);
            
        

        poly_line_9231909b5e9f8bafddd1de216becddd0.bindPopup(popup_8045a29d22125b195c10136b395d8485)
        ;

        
    
    
            var poly_line_64db249bf81585e84ff3d747bf16fd15 = L.polyline(
                [[41.9108844, -87.6507236], [41.9108811, -87.6509496], [41.9108804, -87.6509966], [41.9108786, -87.6511199]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8177851419f2c8c2479889ce414b90fd = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_bb9ba9960b38c1de21e536b2101f397d = $(`<div id=&quot;html_bb9ba9960b38c1de21e536b2101f397d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11891975116 → 261147600 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1281243503&quot; target=&quot;_blank&quot;>1281243503</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>primary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>32.800039532774555</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West North Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>ref</td><td style='padding:2px 6px;'>IL 64</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_8177851419f2c8c2479889ce414b90fd.setContent(html_bb9ba9960b38c1de21e536b2101f397d);
            
        

        poly_line_64db249bf81585e84ff3d747bf16fd15.bindPopup(popup_8177851419f2c8c2479889ce414b90fd)
        ;

        
    
    
            var poly_line_4048e33b0440f3df01a2294ab4a7ea56 = L.polyline(
                [[41.9108844, -87.6507236], [41.9108855, -87.6506457], [41.9108916, -87.6502592]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ddce1484e89f57fdee895e39b2367740 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e8dd881c1aef7a91114259ce51c0d047 = $(`<div id=&quot;html_e8dd881c1aef7a91114259ce51c0d047&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11891975116 → 12195807201 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1281243502&quot; target=&quot;_blank&quot;>1281243502</a>, <a href=&quot;https://www.openstreetmap.org/way/1281243503&quot; target=&quot;_blank&quot;>1281243503</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>primary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>38.437299603965464</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West North Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>ref</td><td style='padding:2px 6px;'>IL 64</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_ddce1484e89f57fdee895e39b2367740.setContent(html_e8dd881c1aef7a91114259ce51c0d047);
            
        

        poly_line_4048e33b0440f3df01a2294ab4a7ea56.bindPopup(popup_ddce1484e89f57fdee895e39b2367740)
        ;

        
    
    
            var poly_line_44e008489cba9045579e95136adb8de3 = L.polyline(
                [[41.9108705, -87.6516591], [41.9108751, -87.6513579]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_973d390a8fca34c6e8bae20710670794 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ce7f5332d6719d8d4dfa6092d7838fa3 = $(`<div id=&quot;html_ce7f5332d6719d8d4dfa6092d7838fa3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11891975125 → 12195807199 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1326511828&quot; target=&quot;_blank&quot;>1326511828</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>primary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>5</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>24.92945495042394</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West North Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>ref</td><td style='padding:2px 6px;'>IL 64</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_973d390a8fca34c6e8bae20710670794.setContent(html_ce7f5332d6719d8d4dfa6092d7838fa3);
            
        

        poly_line_44e008489cba9045579e95136adb8de3.bindPopup(popup_973d390a8fca34c6e8bae20710670794)
        ;

        
    
    
            var poly_line_f9784691c810fc578557962269a517ae = L.polyline(
                [[41.9108705, -87.6516591], [41.9108559, -87.6526062], [41.9108496, -87.6530145], [41.910848, -87.6531209]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_91856edf214b024932641df9afea12c8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_31804dcabdba1dc78bee94f8331f2f56 = $(`<div id=&quot;html_31804dcabdba1dc78bee94f8331f2f56&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11891975125 → 250756058 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1281243513&quot; target=&quot;_blank&quot;>1281243513</a>, <a href=&quot;https://www.openstreetmap.org/way/1281243506&quot; target=&quot;_blank&quot;>1281243506</a>, <a href=&quot;https://www.openstreetmap.org/way/1363279583&quot; target=&quot;_blank&quot;>1363279583</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>primary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>['5', '4']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>120.9893959647988</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West North Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>ref</td><td style='padding:2px 6px;'>IL 64</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_91856edf214b024932641df9afea12c8.setContent(html_31804dcabdba1dc78bee94f8331f2f56);
            
        

        poly_line_f9784691c810fc578557962269a517ae.bindPopup(popup_91856edf214b024932641df9afea12c8)
        ;

        
    
    
            var poly_line_b65a369868fd3b1cb3b631aaa1986218 = L.polyline(
                [[41.9108373, -87.6536017], [41.9108428, -87.6533536]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8281ee85b639aff82e3ea8bf5bd8d57b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fe6eabd6803476599b3018c67aceb8a0 = $(`<div id=&quot;html_fe6eabd6803476599b3018c67aceb8a0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11891975132 → 12195807198 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1281243515&quot; target=&quot;_blank&quot;>1281243515</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>primary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.53931595904081</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West North Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>ref</td><td style='padding:2px 6px;'>IL 64</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_8281ee85b639aff82e3ea8bf5bd8d57b.setContent(html_fe6eabd6803476599b3018c67aceb8a0);
            
        

        poly_line_b65a369868fd3b1cb3b631aaa1986218.bindPopup(popup_8281ee85b639aff82e3ea8bf5bd8d57b)
        ;

        
    
    
            var poly_line_5bb6dfd6e7119b9a714b800fba2fae42 = L.polyline(
                [[41.9108373, -87.6536017], [41.9108296, -87.6539403], [41.9108263, -87.6540839]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_58337bce11ddc8d1f9c7b1ddba8e58e4 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0a77ce5817eb89ffa33612256ba4e964 = $(`<div id=&quot;html_0a77ce5817eb89ffa33612256ba4e964&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11891975132 → 263983398 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1281243518&quot; target=&quot;_blank&quot;>1281243518</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>primary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>39.92066980391235</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West North Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>ref</td><td style='padding:2px 6px;'>IL 64</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_58337bce11ddc8d1f9c7b1ddba8e58e4.setContent(html_0a77ce5817eb89ffa33612256ba4e964);
            
        

        poly_line_5bb6dfd6e7119b9a714b800fba2fae42.bindPopup(popup_58337bce11ddc8d1f9c7b1ddba8e58e4)
        ;

        
    
    
            var poly_line_18870f3175200cad9d2b34351ba8bb24 = L.polyline(
                [[41.9108373, -87.6536017], [41.9109195, -87.6536034], [41.9110141, -87.6536058]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_53489f1917965a9df3f66e11c32fa0ab = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_22c0fe274b9b9c682aee70822d97f4f5 = $(`<div id=&quot;html_22c0fe274b9b9c682aee70822d97f4f5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11891975132 → 418527772 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1465134065&quot; target=&quot;_blank&quot;>1465134065</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.662247876531325</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_53489f1917965a9df3f66e11c32fa0ab.setContent(html_22c0fe274b9b9c682aee70822d97f4f5);
            
        

        poly_line_18870f3175200cad9d2b34351ba8bb24.bindPopup(popup_53489f1917965a9df3f66e11c32fa0ab)
        ;

        
    
    
            var poly_line_36d1078b8b441a2d75bc7c25ba26dbb2 = L.polyline(
                [[41.9108041, -87.655697], [41.9108086, -87.6553704]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0bc7853374db43ccfc655f1fbc564d0e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7a1b2397f379063d111bd7b3a2c369d8 = $(`<div id=&quot;html_7a1b2397f379063d111bd7b3a2c369d8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11891975142 → 12195807189 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1281243521&quot; target=&quot;_blank&quot;>1281243521</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>primary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>27.030709050185376</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West North Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>ref</td><td style='padding:2px 6px;'>IL 64</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_0bc7853374db43ccfc655f1fbc564d0e.setContent(html_7a1b2397f379063d111bd7b3a2c369d8);
            
        

        poly_line_36d1078b8b441a2d75bc7c25ba26dbb2.bindPopup(popup_0bc7853374db43ccfc655f1fbc564d0e)
        ;

        
    
    
            var poly_line_cb773da84ce460372a6fdbd0a90fd5e5 = L.polyline(
                [[41.9108041, -87.655697], [41.9107993, -87.6560468], [41.9107804, -87.6575889], [41.9107677, -87.6586189]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9013371b43601fa7075b7308ddc11d19 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_92623836b719f6096b687ac14f566ac8 = $(`<div id=&quot;html_92623836b719f6096b687ac14f566ac8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11891975142 → 263404658 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1281243521&quot; target=&quot;_blank&quot;>1281243521</a>, <a href=&quot;https://www.openstreetmap.org/way/1281243523&quot; target=&quot;_blank&quot;>1281243523</a>, <a href=&quot;https://www.openstreetmap.org/way/1281243525&quot; target=&quot;_blank&quot;>1281243525</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>bridge</td><td style='padding:2px 6px;'>yes</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>primary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>241.82057557806445</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West North Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>ref</td><td style='padding:2px 6px;'>IL 64</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_9013371b43601fa7075b7308ddc11d19.setContent(html_92623836b719f6096b687ac14f566ac8);
            
        

        poly_line_cb773da84ce460372a6fdbd0a90fd5e5.bindPopup(popup_9013371b43601fa7075b7308ddc11d19)
        ;

        
    
    
            var poly_line_9a16443859303905c27fd1c3d3052814 = L.polyline(
                [[41.9108041, -87.655697], [41.9107261, -87.6556954], [41.9107142, -87.6556952], [41.9106309, -87.6556908], [41.91059, -87.6556988], [41.9105661, -87.655731], [41.9105481, -87.6558061], [41.9105441, -87.6559684], [41.910583, -87.6560971], [41.910614, -87.6561307], [41.9106562, -87.6561392]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f2a771f781d720681654616973c6f522 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e4064608619051658092304e45f5c79e = $(`<div id=&quot;html_e4064608619051658092304e45f5c79e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11891975142 → 12177164056 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317723639&quot; target=&quot;_blank&quot;>1317723639</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>68.2612834068583</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_f2a771f781d720681654616973c6f522.setContent(html_e4064608619051658092304e45f5c79e);
            
        

        poly_line_9a16443859303905c27fd1c3d3052814.bindPopup(popup_f2a771f781d720681654616973c6f522)
        ;

        
    
    
            var poly_line_34564db000c3f2d7e82d71f8e8bc3e54 = L.polyline(
                [[41.9107641, -87.6590223], [41.9107677, -87.6586189]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2e3e6d4065b78a30a735cf85f2b9a550 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f69a64fc05f9095fadb5475c1ed2727b = $(`<div id=&quot;html_f69a64fc05f9095fadb5475c1ed2727b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11891975148 → 263404658 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1281243527&quot; target=&quot;_blank&quot;>1281243527</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>primary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>5</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>33.38368143700331</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West North Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>ref</td><td style='padding:2px 6px;'>IL 64</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_2e3e6d4065b78a30a735cf85f2b9a550.setContent(html_f69a64fc05f9095fadb5475c1ed2727b);
            
        

        poly_line_34564db000c3f2d7e82d71f8e8bc3e54.bindPopup(popup_2e3e6d4065b78a30a735cf85f2b9a550)
        ;

        
    
    
            var poly_line_0b18af627b4e582ed453b30116a88ea0 = L.polyline(
                [[41.9107641, -87.6590223], [41.9107587, -87.6594121]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7dd6f480736e60b5296956838d5b889d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a97c084ad036255131d4e15d2759e843 = $(`<div id=&quot;html_a97c084ad036255131d4e15d2759e843&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11891975148 → 11891975149 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1281243528&quot; target=&quot;_blank&quot;>1281243528</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>primary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>32.26147426496026</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West North Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>ref</td><td style='padding:2px 6px;'>IL 64</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_7dd6f480736e60b5296956838d5b889d.setContent(html_a97c084ad036255131d4e15d2759e843);
            
        

        poly_line_0b18af627b4e582ed453b30116a88ea0.bindPopup(popup_7dd6f480736e60b5296956838d5b889d)
        ;

        
    
    
            var poly_line_326fb846f693e795b0f971e0b95d6a0c = L.polyline(
                [[41.9107641, -87.6590223], [41.9108553, -87.6591293], [41.9108898, -87.6591658], [41.9109147, -87.6591813], [41.9109471, -87.6591904], [41.9109798, -87.6592172]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_63268ea3df608da9fb17c0b44e5f65b0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_660de2f14ba457b11c8b1155f0077aa9 = $(`<div id=&quot;html_660de2f14ba457b11c8b1155f0077aa9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11891975148 → 2281979810 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1082616567&quot; target=&quot;_blank&quot;>1082616567</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>1</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>29.335982816629908</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_63268ea3df608da9fb17c0b44e5f65b0.setContent(html_660de2f14ba457b11c8b1155f0077aa9);
            
        

        poly_line_326fb846f693e795b0f971e0b95d6a0c.bindPopup(popup_63268ea3df608da9fb17c0b44e5f65b0)
        ;

        
    
    
            var poly_line_f6bea7fffb828f99aa43ad248e53cc5b = L.polyline(
                [[41.9107587, -87.6594121], [41.9107641, -87.6590223]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_79ecc596d3d09136d2d1e2d88066fd29 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_aec0378563925291b5ead62d1d997bb3 = $(`<div id=&quot;html_aec0378563925291b5ead62d1d997bb3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11891975149 → 11891975148 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1281243528&quot; target=&quot;_blank&quot;>1281243528</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>primary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>32.26147426496026</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West North Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>ref</td><td style='padding:2px 6px;'>IL 64</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_79ecc596d3d09136d2d1e2d88066fd29.setContent(html_aec0378563925291b5ead62d1d997bb3);
            
        

        poly_line_f6bea7fffb828f99aa43ad248e53cc5b.bindPopup(popup_79ecc596d3d09136d2d1e2d88066fd29)
        ;

        
    
    
            var poly_line_4a05aa7ad39bc043baf57a303a6a3aa7 = L.polyline(
                [[41.9107587, -87.6594121], [41.9107566, -87.6595266]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_50b1f0768c55fe34c2e269d2b16e4df9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_34037b0807e075b8c9270ff122d92311 = $(`<div id=&quot;html_34037b0807e075b8c9270ff122d92311&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11891975149 → 12195807197 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1281243531&quot; target=&quot;_blank&quot;>1281243531</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>primary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>5</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>9.477733748494082</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West North Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>ref</td><td style='padding:2px 6px;'>IL 64</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_50b1f0768c55fe34c2e269d2b16e4df9.setContent(html_34037b0807e075b8c9270ff122d92311);
            
        

        poly_line_4a05aa7ad39bc043baf57a303a6a3aa7.bindPopup(popup_50b1f0768c55fe34c2e269d2b16e4df9)
        ;

        
    
    
            var poly_line_271f37d8be2601a33809f3c316c8c232 = L.polyline(
                [[41.910746, -87.6603983], [41.9106535, -87.660402], [41.9102823, -87.6603878]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2a877905b4460f1dd1c3b9051c4618b7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e8cac4a2fa3a3e167b0df21a59f4a734 = $(`<div id=&quot;html_e8cac4a2fa3a3e167b0df21a59f4a734&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11891975152 → 5493121374 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/583427311&quot; target=&quot;_blank&quot;>583427311</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>51.5824389245484</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Throop Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_2a877905b4460f1dd1c3b9051c4618b7.setContent(html_e8cac4a2fa3a3e167b0df21a59f4a734);
            
        

        poly_line_271f37d8be2601a33809f3c316c8c232.bindPopup(popup_2a877905b4460f1dd1c3b9051c4618b7)
        ;

        
    
    
            var poly_line_c90987d09a7cc6de90187788c84d94f5 = L.polyline(
                [[41.910746, -87.6603983], [41.9108482, -87.6603893], [41.9109233, -87.6603922], [41.9111903, -87.6603997], [41.9111972, -87.6603999]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_067b29b72ab75d4818489a65ccc7fc59 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_bc6e8336bc6ebb9567cc991f91053952 = $(`<div id=&quot;html_bc6e8336bc6ebb9567cc991f91053952&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11891975152 → 4100010499 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/678454211&quot; target=&quot;_blank&quot;>678454211</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>50.205710972561654</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Throop Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_067b29b72ab75d4818489a65ccc7fc59.setContent(html_bc6e8336bc6ebb9567cc991f91053952);
            
        

        poly_line_c90987d09a7cc6de90187788c84d94f5.bindPopup(popup_067b29b72ab75d4818489a65ccc7fc59)
        ;

        
    
    
            var poly_line_e34cf6776513b845d9943c9ca51a9502 = L.polyline(
                [[41.910746, -87.6603983], [41.9107471, -87.6603], [41.9107511, -87.659974], [41.9107566, -87.6595266]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ed0ba018ba2ebe00254e6d778bbe5a84 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7be5c4844c1cda4e63c9272f25caaa49 = $(`<div id=&quot;html_7be5c4844c1cda4e63c9272f25caaa49&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11891975152 → 12195807197 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1281243530&quot; target=&quot;_blank&quot;>1281243530</a>, <a href=&quot;https://www.openstreetmap.org/way/1281243531&quot; target=&quot;_blank&quot;>1281243531</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>primary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>['5', '6']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>72.14268017954325</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West North Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>ref</td><td style='padding:2px 6px;'>IL 64</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_ed0ba018ba2ebe00254e6d778bbe5a84.setContent(html_7be5c4844c1cda4e63c9272f25caaa49);
            
        

        poly_line_e34cf6776513b845d9943c9ca51a9502.bindPopup(popup_ed0ba018ba2ebe00254e6d778bbe5a84)
        ;

        
    
    
            var poly_line_580ad75903f2abfda74896af8dec8e6f = L.polyline(
                [[41.910746, -87.6603983], [41.9107438, -87.6605162], [41.9107381, -87.6608254], [41.9107376, -87.6608556]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f9a93e592a2152a74e118345436e7d72 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_921a9e6618e842d6eb386dc2a543bee6 = $(`<div id=&quot;html_921a9e6618e842d6eb386dc2a543bee6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11891975152 → 12195807196 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1281243533&quot; target=&quot;_blank&quot;>1281243533</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>primary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>37.853045376107225</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West North Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>ref</td><td style='padding:2px 6px;'>IL 64</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_f9a93e592a2152a74e118345436e7d72.setContent(html_921a9e6618e842d6eb386dc2a543bee6);
            
        

        poly_line_580ad75903f2abfda74896af8dec8e6f.bindPopup(popup_f9a93e592a2152a74e118345436e7d72)
        ;

        
    
    
            var poly_line_aae31f3aa9d142b28874f74281402b92 = L.polyline(
                [[41.9107312, -87.6612062], [41.9107376, -87.6608556]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_56a185535f85d3eebcc8e357e1528002 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_65f349196ba205ee03b7f414e11b8ad9 = $(`<div id=&quot;html_65f349196ba205ee03b7f414e11b8ad9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11891975160 → 12195807196 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1281243533&quot; target=&quot;_blank&quot;>1281243533</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>primary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>29.020831479818717</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West North Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>ref</td><td style='padding:2px 6px;'>IL 64</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_56a185535f85d3eebcc8e357e1528002.setContent(html_65f349196ba205ee03b7f414e11b8ad9);
            
        

        poly_line_aae31f3aa9d142b28874f74281402b92.bindPopup(popup_56a185535f85d3eebcc8e357e1528002)
        ;

        
    
    
            var poly_line_7901522c79945a7e4a0f5e9c4fd9ea94 = L.polyline(
                [[41.9107312, -87.6612062], [41.910809, -87.6612097], [41.9111846, -87.6612263]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a3b34778eeebf3d286e2c58e7eca6dc9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_af6add301583463dc81b4705ff5698ce = $(`<div id=&quot;html_af6add301583463dc81b4705ff5698ce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11891975160 → 4100010500 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/678454210&quot; target=&quot;_blank&quot;>678454210</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>50.44328110874805</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Ada Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_a3b34778eeebf3d286e2c58e7eca6dc9.setContent(html_af6add301583463dc81b4705ff5698ce);
            
        

        poly_line_7901522c79945a7e4a0f5e9c4fd9ea94.bindPopup(popup_a3b34778eeebf3d286e2c58e7eca6dc9)
        ;

        
    
    
            var poly_line_9180e0f3d746b4a3c4c9f25f8abad7d3 = L.polyline(
                [[41.9109556, -87.6443618], [41.91096, -87.6441145], [41.9109684, -87.6437181], [41.9109712, -87.6436245], [41.9109766, -87.6434437]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_90d9dc0066d5e63a6d90f67e3d0fe5ca = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_70185329e6050231af51a6a8eecb4285 = $(`<div id=&quot;html_70185329e6050231af51a6a8eecb4285&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11891979872 → 11891745315 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1281217242&quot; target=&quot;_blank&quot;>1281217242</a>, <a href=&quot;https://www.openstreetmap.org/way/1281217243&quot; target=&quot;_blank&quot;>1281217243</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>primary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>['3', '2']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>76.00982511382105</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West North Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>ref</td><td style='padding:2px 6px;'>IL 64</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_90d9dc0066d5e63a6d90f67e3d0fe5ca.setContent(html_70185329e6050231af51a6a8eecb4285);
            
        

        poly_line_9180e0f3d746b4a3c4c9f25f8abad7d3.bindPopup(popup_90d9dc0066d5e63a6d90f67e3d0fe5ca)
        ;

        
    
    
            var poly_line_1ed9c7ea0f92214952a388da8772be85 = L.polyline(
                [[41.9030424, -87.6577977], [41.9030141, -87.6578659]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c9281e745f1fe8bbb23891904e2ad01c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9be85a468d88f655f4b731655f2dd421 = $(`<div id=&quot;html_9be85a468d88f655f4b731655f2dd421&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11967979300 → 261112256 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/904368559&quot; target=&quot;_blank&quot;>904368559</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>6.4621767592429205</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_c9281e745f1fe8bbb23891904e2ad01c.setContent(html_9be85a468d88f655f4b731655f2dd421);
            
        

        poly_line_1ed9c7ea0f92214952a388da8772be85.bindPopup(popup_c9281e745f1fe8bbb23891904e2ad01c)
        ;

        
    
    
            var poly_line_8b6eea53d510494186e92e513c04946e = L.polyline(
                [[41.9030424, -87.6577977], [41.9031261, -87.6578749]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9e8f9c80c3ea0fbb6f0239efd9b2adf3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_739b677fb37ac43e6342f326a3385ecb = $(`<div id=&quot;html_739b677fb37ac43e6342f326a3385ecb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11967979300 → 12187280080 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820024&quot; target=&quot;_blank&quot;>1316820024</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>11.288968540067533</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>Elston Avenue Bikeway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_9e8f9c80c3ea0fbb6f0239efd9b2adf3.setContent(html_739b677fb37ac43e6342f326a3385ecb);
            
        

        poly_line_8b6eea53d510494186e92e513c04946e.bindPopup(popup_9e8f9c80c3ea0fbb6f0239efd9b2adf3)
        ;

        
    
    
            var poly_line_b17c3c5b20d3d834461758adc6e27955 = L.polyline(
                [[41.9030424, -87.6577977], [41.9030503, -87.657743], [41.9030597, -87.6575725], [41.902888, -87.6574412]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c47079974fc28f9ae4ef8cc4a20fccb7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_edea16679b3e3821abb46d021e0a07bf = $(`<div id=&quot;html_edea16679b3e3821abb46d021e0a07bf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11967979300 → 12187383255 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/904368559&quot; target=&quot;_blank&quot;>904368559</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>40.72854875453966</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_c47079974fc28f9ae4ef8cc4a20fccb7.setContent(html_edea16679b3e3821abb46d021e0a07bf);
            
        

        poly_line_b17c3c5b20d3d834461758adc6e27955.bindPopup(popup_c47079974fc28f9ae4ef8cc4a20fccb7)
        ;

        
    
    
            var poly_line_229785fb0db83e8fc1314d8b61a5a867 = L.polyline(
                [[41.8998489, -87.6565694], [41.8998481, -87.6565336]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4e37401f5cab85ee2c64a04d0d2c1df4 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_99bd10be69da05f46eb31ac3cb46b970 = $(`<div id=&quot;html_99bd10be69da05f46eb31ac3cb46b970&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11967979302 → 10099202346 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/567586953&quot; target=&quot;_blank&quot;>567586953</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>2.9642855755565303</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Augusta Boulevard</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_4e37401f5cab85ee2c64a04d0d2c1df4.setContent(html_99bd10be69da05f46eb31ac3cb46b970);
            
        

        poly_line_229785fb0db83e8fc1314d8b61a5a867.bindPopup(popup_4e37401f5cab85ee2c64a04d0d2c1df4)
        ;

        
    
    
            var poly_line_ca0758bda4268cfa261b8cdf3cebb943 = L.polyline(
                [[41.8998489, -87.6565694], [41.8999182, -87.6565704]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e44ace7e077c1cebd20b447a64372505 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_eb55e4ccf0516e6bfb20361b4f7bcfbb = $(`<div id=&quot;html_eb55e4ccf0516e6bfb20361b4f7bcfbb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11967979302 → 11967979303 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820048&quot; target=&quot;_blank&quot;>1316820048</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.706263749984678</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>Elston Avenue Bikeway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_e44ace7e077c1cebd20b447a64372505.setContent(html_eb55e4ccf0516e6bfb20361b4f7bcfbb);
            
        

        poly_line_ca0758bda4268cfa261b8cdf3cebb943.bindPopup(popup_e44ace7e077c1cebd20b447a64372505)
        ;

        
    
    
            var poly_line_01d93f615dee8b3fc43d0e503cc58c1d = L.polyline(
                [[41.8999182, -87.6565704], [41.8998866, -87.6566342]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_66a4b08b8bf571c1e27a2b3b00b8bd3e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_890ca6ab87b92180c2188bd1d848c04d = $(`<div id=&quot;html_890ca6ab87b92180c2188bd1d848c04d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11967979303 → 261185602 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/610943070&quot; target=&quot;_blank&quot;>610943070</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>6.342594615355004</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Augusta Boulevard</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_66a4b08b8bf571c1e27a2b3b00b8bd3e.setContent(html_890ca6ab87b92180c2188bd1d848c04d);
            
        

        poly_line_01d93f615dee8b3fc43d0e503cc58c1d.bindPopup(popup_66a4b08b8bf571c1e27a2b3b00b8bd3e)
        ;

        
    
    
            var poly_line_80eebc8de3047235ed9a5aed14b8630e = L.polyline(
                [[41.8999182, -87.6565704], [41.8999841, -87.6565706], [41.9012265, -87.6566093], [41.9013081, -87.656613], [41.9013607, -87.6566224], [41.9014229, -87.6566466], [41.9014907, -87.6566925], [41.9017652, -87.6568815]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4813a6ae13e73cbf97f17fa18c6db8db = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ac4d635c97ce71642d2e686ee2f8730d = $(`<div id=&quot;html_ac4d635c97ce71642d2e686ee2f8730d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11967979303 → 12187274995 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820048&quot; target=&quot;_blank&quot;>1316820048</a>, <a href=&quot;https://www.openstreetmap.org/way/1290800458&quot; target=&quot;_blank&quot;>1290800458</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>210.4328614359555</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>Elston Avenue Bikeway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_4813a6ae13e73cbf97f17fa18c6db8db.setContent(html_ac4d635c97ce71642d2e686ee2f8730d);
            
        

        poly_line_80eebc8de3047235ed9a5aed14b8630e.bindPopup(popup_4813a6ae13e73cbf97f17fa18c6db8db)
        ;

        
    
    
            var poly_line_26f7194fc1a93d3a4ca1f0f4cb7a1547 = L.polyline(
                [[41.8998847, -87.6567283], [41.8998866, -87.6566342]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_199981db86470dc7757da3b1a5ee5c48 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_33cc1d1aeedb9dd55e93c626186351f0 = $(`<div id=&quot;html_33cc1d1aeedb9dd55e93c626186351f0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11967979323 → 261185602 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/569914535&quot; target=&quot;_blank&quot;>569914535</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.790951173164582</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Augusta Boulevard</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_199981db86470dc7757da3b1a5ee5c48.setContent(html_33cc1d1aeedb9dd55e93c626186351f0);
            
        

        poly_line_26f7194fc1a93d3a4ca1f0f4cb7a1547.bindPopup(popup_199981db86470dc7757da3b1a5ee5c48)
        ;

        
    
    
            var poly_line_36e7ddb324c639ce76a72ddf6959ace4 = L.polyline(
                [[41.8998847, -87.6567283], [41.8998839, -87.6567679], [41.8998791, -87.6570066], [41.8998756, -87.6571781]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b1a0a4b8894e74bd49d96ce2bf3297bb = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_03d011affb83a342d6a44cc0df80c748 = $(`<div id=&quot;html_03d011affb83a342d6a44cc0df80c748&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11967979323 → 9687430258 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/569914535&quot; target=&quot;_blank&quot;>569914535</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>37.24097027042412</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Augusta Boulevard</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_b1a0a4b8894e74bd49d96ce2bf3297bb.setContent(html_03d011affb83a342d6a44cc0df80c748);
            
        

        poly_line_36e7ddb324c639ce76a72ddf6959ace4.bindPopup(popup_b1a0a4b8894e74bd49d96ce2bf3297bb)
        ;

        
    
    
            var poly_line_35900beee484368636cbfa736301bf18 = L.polyline(
                [[41.8998847, -87.6567283], [41.8998047, -87.6567255], [41.8995714, -87.6567175], [41.8993741, -87.6567042], [41.8992856, -87.6566994], [41.8989638, -87.6566905], [41.8988052, -87.6566724], [41.8987223, -87.6566103]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4910c4cbad76d9f0f8bf2b7e03f7b08a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0609b4039443800278dac602a29f1ba3 = $(`<div id=&quot;html_0609b4039443800278dac602a29f1ba3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11967979323 → 10282528013 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820050&quot; target=&quot;_blank&quot;>1316820050</a>, <a href=&quot;https://www.openstreetmap.org/way/1316820045&quot; target=&quot;_blank&quot;>1316820045</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>130.7073964923975</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>Elston Avenue Bikeway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_4910c4cbad76d9f0f8bf2b7e03f7b08a.setContent(html_0609b4039443800278dac602a29f1ba3);
            
        

        poly_line_35900beee484368636cbfa736301bf18.bindPopup(popup_4910c4cbad76d9f0f8bf2b7e03f7b08a)
        ;

        
    
    
            var poly_line_64134de5902984a58fa6a50abbf871e1 = L.polyline(
                [[41.9006749, -87.6567555], [41.9006766, -87.6566601]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7534921c90d615e3462ce0b5b77b2c4e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_40fbfcee6fab42a44de72ee49afe1562 = $(`<div id=&quot;html_40fbfcee6fab42a44de72ee49afe1562&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11967979324 → 261119878 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24071514&quot; target=&quot;_blank&quot;>24071514</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.897844027411509</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Cortez Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_7534921c90d615e3462ce0b5b77b2c4e.setContent(html_40fbfcee6fab42a44de72ee49afe1562);
            
        

        poly_line_64134de5902984a58fa6a50abbf871e1.bindPopup(popup_7534921c90d615e3462ce0b5b77b2c4e)
        ;

        
    
    
            var poly_line_16ad1f4b49afadef3e1cadbf224fb5d8 = L.polyline(
                [[41.9006749, -87.6567555], [41.9006745, -87.6567852], [41.9006654, -87.6574133]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_90288a7faf7318a3eb46fe404df9e018 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9643a89b4e2d2980ef35ad455d344bc4 = $(`<div id=&quot;html_9643a89b4e2d2980ef35ad455d344bc4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11967979324 → 11735383559 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24071514&quot; target=&quot;_blank&quot;>24071514</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>54.45169591872689</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Cortez Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_90288a7faf7318a3eb46fe404df9e018.setContent(html_9643a89b4e2d2980ef35ad455d344bc4);
            
        

        poly_line_16ad1f4b49afadef3e1cadbf224fb5d8.bindPopup(popup_90288a7faf7318a3eb46fe404df9e018)
        ;

        
    
    
            var poly_line_05a52245d521eb7208a728799b6981fe = L.polyline(
                [[41.9006749, -87.6567555], [41.9006128, -87.6567534], [41.8999885, -87.6567319], [41.8998847, -87.6567283]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6fe92d734cc00a1f038b577aff8e6be7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f5a418ab69a33183e31ddfc0b69b5c33 = $(`<div id=&quot;html_f5a418ab69a33183e31ddfc0b69b5c33&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11967979324 → 11967979323 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820049&quot; target=&quot;_blank&quot;>1316820049</a>, <a href=&quot;https://www.openstreetmap.org/way/1316820050&quot; target=&quot;_blank&quot;>1316820050</a>, <a href=&quot;https://www.openstreetmap.org/way/1316820046&quot; target=&quot;_blank&quot;>1316820046</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>87.89518914891016</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>Elston Avenue Bikeway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_6fe92d734cc00a1f038b577aff8e6be7.setContent(html_f5a418ab69a33183e31ddfc0b69b5c33);
            
        

        poly_line_05a52245d521eb7208a728799b6981fe.bindPopup(popup_6fe92d734cc00a1f038b577aff8e6be7)
        ;

        
    
    
            var poly_line_4c42845050168a64adfb4f1ed315c296 = L.polyline(
                [[41.9043836, -87.6591871], [41.9043515, -87.6592599]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_89191e8f4f9a84616fceb86c639a2080 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1aa70fd585871e8042c0aeaef5e53f41 = $(`<div id=&quot;html_1aa70fd585871e8042c0aeaef5e53f41&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11967979353 → 1699464698 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626391&quot; target=&quot;_blank&quot;>571626391</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.002746459709931</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_89191e8f4f9a84616fceb86c639a2080.setContent(html_1aa70fd585871e8042c0aeaef5e53f41);
            
        

        poly_line_4c42845050168a64adfb4f1ed315c296.bindPopup(popup_89191e8f4f9a84616fceb86c639a2080)
        ;

        
    
    
            var poly_line_5faf6f079724f5dcd5592b88f2a3b954 = L.polyline(
                [[41.9043836, -87.6591871], [41.9043953, -87.6591605], [41.9044032, -87.6591407], [41.9044283, -87.6590855]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a7d425c3ff558b4ab3c7439facffe146 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_42c4891828cac979dc73e5a5744f4e27 = $(`<div id=&quot;html_42c4891828cac979dc73e5a5744f4e27&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11967979353 → 5493314498 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626391&quot; target=&quot;_blank&quot;>571626391</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>9.769648169332374</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_a7d425c3ff558b4ab3c7439facffe146.setContent(html_42c4891828cac979dc73e5a5744f4e27);
            
        

        poly_line_5faf6f079724f5dcd5592b88f2a3b954.bindPopup(popup_a7d425c3ff558b4ab3c7439facffe146)
        ;

        
    
    
            var poly_line_1d6ac28d4839339d11ce4bf06a20f41a = L.polyline(
                [[41.9043836, -87.6591871], [41.9044212, -87.6592135], [41.9044448, -87.6592302], [41.9045274, -87.6592839], [41.904564, -87.6593063], [41.9046121, -87.6593333]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_513571b4bc9af5d006a168849f32c0c0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4a00bfb6b3454ace45d811d86a5ed4fc = $(`<div id=&quot;html_4a00bfb6b3454ace45d811d86a5ed4fc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11967979353 → 11967979354 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820017&quot; target=&quot;_blank&quot;>1316820017</a>, <a href=&quot;https://www.openstreetmap.org/way/1316820018&quot; target=&quot;_blank&quot;>1316820018</a>, <a href=&quot;https://www.openstreetmap.org/way/1316820012&quot; target=&quot;_blank&quot;>1316820012</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>28.15518035811578</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>Elston Avenue Bikeway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_513571b4bc9af5d006a168849f32c0c0.setContent(html_4a00bfb6b3454ace45d811d86a5ed4fc);
            
        

        poly_line_1d6ac28d4839339d11ce4bf06a20f41a.bindPopup(popup_513571b4bc9af5d006a168849f32c0c0)
        ;

        
    
    
            var poly_line_3fde30a5c2eb49d000d4ba1407547cb0 = L.polyline(
                [[41.9046121, -87.6593333], [41.9045923, -87.6594144]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b68b3fe2e26493560cf5da2a2656b71b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8b905bad87582d4b5b370a3402688ea0 = $(`<div id=&quot;html_8b905bad87582d4b5b370a3402688ea0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11967979354 → 5493314491 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626390&quot; target=&quot;_blank&quot;>571626390</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.063546368802757</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_b68b3fe2e26493560cf5da2a2656b71b.setContent(html_8b905bad87582d4b5b370a3402688ea0);
            
        

        poly_line_3fde30a5c2eb49d000d4ba1407547cb0.bindPopup(popup_b68b3fe2e26493560cf5da2a2656b71b)
        ;

        
    
    
            var poly_line_00efea6db7d73341e600706d50c20942 = L.polyline(
                [[41.9046121, -87.6593333], [41.9046559, -87.6593522], [41.9047125, -87.6593781], [41.9047976, -87.6594106], [41.9048697, -87.6594314], [41.9050837, -87.6594725], [41.9053261, -87.659517], [41.9053835, -87.6595276]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b203c84bea4b2ade7e43bdbdd41f311a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_df7b27d32da21817819136c3f1795505 = $(`<div id=&quot;html_df7b27d32da21817819136c3f1795505&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11967979354 → 11967979355 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316819994&quot; target=&quot;_blank&quot;>1316819994</a>, <a href=&quot;https://www.openstreetmap.org/way/1316820011&quot; target=&quot;_blank&quot;>1316820011</a>, <a href=&quot;https://www.openstreetmap.org/way/1316820012&quot; target=&quot;_blank&quot;>1316820012</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>87.48568056945967</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>Elston Avenue Bikeway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_b203c84bea4b2ade7e43bdbdd41f311a.setContent(html_df7b27d32da21817819136c3f1795505);
            
        

        poly_line_00efea6db7d73341e600706d50c20942.bindPopup(popup_b203c84bea4b2ade7e43bdbdd41f311a)
        ;

        
    
    
            var poly_line_266c18b051f24985c844aae3d3ef6f75 = L.polyline(
                [[41.9053835, -87.6595276], [41.9053784, -87.6596202]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0865fe33912fdf22885561405477e80b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d6f6ebedfc13c535d99bffee00d234de = $(`<div id=&quot;html_d6f6ebedfc13c535d99bffee00d234de&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11967979355 → 2565051779 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820013&quot; target=&quot;_blank&quot;>1316820013</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.684234940127807</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_0865fe33912fdf22885561405477e80b.setContent(html_d6f6ebedfc13c535d99bffee00d234de);
            
        

        poly_line_266c18b051f24985c844aae3d3ef6f75.bindPopup(popup_0865fe33912fdf22885561405477e80b)
        ;

        
    
    
            var poly_line_a686044d8d409c3ca60a40daba18c5fb = L.polyline(
                [[41.9053835, -87.6595276], [41.9054455, -87.659539], [41.905646, -87.6595766]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_68b387f9c588d34b10f047791ce4ac05 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_dc83f1f5f5f8cb5dcdbdfe578d2d3fb5 = $(`<div id=&quot;html_dc83f1f5f5f8cb5dcdbdfe578d2d3fb5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11967979355 → 12187280018 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316819993&quot; target=&quot;_blank&quot;>1316819993</a>, <a href=&quot;https://www.openstreetmap.org/way/1316819994&quot; target=&quot;_blank&quot;>1316819994</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>29.469060293562013</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>Elston Avenue Bikeway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_68b387f9c588d34b10f047791ce4ac05.setContent(html_dc83f1f5f5f8cb5dcdbdfe578d2d3fb5);
            
        

        poly_line_a686044d8d409c3ca60a40daba18c5fb.bindPopup(popup_68b387f9c588d34b10f047791ce4ac05)
        ;

        
    
    
            var poly_line_03f7de792ba7ee7b45c114314d2c744d = L.polyline(
                [[41.9053835, -87.6595276], [41.9053854, -87.6595016], [41.9053882, -87.6594507], [41.9053934, -87.6593911]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ea764f108b8bb742b46909293e1bbbe3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6427a51a283fa1a584cb6e7165d5781c = $(`<div id=&quot;html_6427a51a283fa1a584cb6e7165d5781c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11967979355 → 5493314504 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820013&quot; target=&quot;_blank&quot;>1316820013</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>11.351917695961887</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_ea764f108b8bb742b46909293e1bbbe3.setContent(html_6427a51a283fa1a584cb6e7165d5781c);
            
        

        poly_line_03f7de792ba7ee7b45c114314d2c744d.bindPopup(popup_ea764f108b8bb742b46909293e1bbbe3)
        ;

        
    
    
            var poly_line_4ecdf2080590ec480228cf1b186b18bb = L.polyline(
                [[41.9049648, -87.6596133], [41.9049696, -87.6595455]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5e5413e7c20fc989046e5b3568836ec1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f97087db8b9d9340437d8ed8472a007a = $(`<div id=&quot;html_f97087db8b9d9340437d8ed8472a007a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11967979356 → 1699464718 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/621443145&quot; target=&quot;_blank&quot;>621443145</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>5.636276526001517</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_5e5413e7c20fc989046e5b3568836ec1.setContent(html_f97087db8b9d9340437d8ed8472a007a);
            
        

        poly_line_4ecdf2080590ec480228cf1b186b18bb.bindPopup(popup_5e5413e7c20fc989046e5b3568836ec1)
        ;

        
    
    
            var poly_line_d6f0f88381ae8cc071a9f32ae159ade2 = L.polyline(
                [[41.9049648, -87.6596133], [41.9049624, -87.6596367], [41.9049576, -87.6596841]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b387c092cd80500a80c5b7390e3d491b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_59e34c371090319bff10048529a9efed = $(`<div id=&quot;html_59e34c371090319bff10048529a9efed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11967979356 → 5870661824 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/621443145&quot; target=&quot;_blank&quot;>621443145</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>5.913667006335845</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_b387c092cd80500a80c5b7390e3d491b.setContent(html_59e34c371090319bff10048529a9efed);
            
        

        poly_line_d6f0f88381ae8cc071a9f32ae159ade2.bindPopup(popup_b387c092cd80500a80c5b7390e3d491b)
        ;

        
    
    
            var poly_line_8b7cf6c1a5fb91fc7ad4790f568b55a6 = L.polyline(
                [[41.9049648, -87.6596133], [41.9048594, -87.6595929], [41.9048002, -87.6595787], [41.9046795, -87.6595384], [41.9046241, -87.6595134]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_be563b4b39494f644e122e3ab771b13c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e162e9d1dc8fc7c369eaa5baf4b6af24 = $(`<div id=&quot;html_e162e9d1dc8fc7c369eaa5baf4b6af24&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11967979356 → 12187280048 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820009&quot; target=&quot;_blank&quot;>1316820009</a>, <a href=&quot;https://www.openstreetmap.org/way/1316819991&quot; target=&quot;_blank&quot;>1316819991</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>38.85553879212933</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>Elston Avenue Bikeway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_be563b4b39494f644e122e3ab771b13c.setContent(html_e162e9d1dc8fc7c369eaa5baf4b6af24);
            
        

        poly_line_8b7cf6c1a5fb91fc7ad4790f568b55a6.bindPopup(popup_be563b4b39494f644e122e3ab771b13c)
        ;

        
    
    
            var poly_line_f7c3c949113789f1a0cfcfcb8a3f14a8 = L.polyline(
                [[41.9062104, -87.6598414], [41.9062112, -87.6597699]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_98d2a4f34cbd394b3b9932a00c7d5976 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_51adf92f2585c8f4a4b0b821b09b0a48 = $(`<div id=&quot;html_51adf92f2585c8f4a4b0b821b09b0a48&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11967979359 → 1699464731 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/249978862&quot; target=&quot;_blank&quot;>249978862</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>5.917703660293868</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Evergreen Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_98d2a4f34cbd394b3b9932a00c7d5976.setContent(html_51adf92f2585c8f4a4b0b821b09b0a48);
            
        

        poly_line_f7c3c949113789f1a0cfcfcb8a3f14a8.bindPopup(popup_98d2a4f34cbd394b3b9932a00c7d5976)
        ;

        
    
    
            var poly_line_4db029984437b83fb2a03dff78229f50 = L.polyline(
                [[41.9062104, -87.6598414], [41.9062094, -87.6598678], [41.9062098, -87.6599044], [41.9062061, -87.6603679], [41.906145, -87.6603631], [41.9061227, -87.6603593], [41.9056788, -87.6602725], [41.9054465, -87.6602305], [41.9053665, -87.6602108], [41.9053757, -87.6597494], [41.9053759, -87.6597371], [41.9053762, -87.6597184], [41.9053769, -87.659688]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_15ad0e2b66a411f9e0ade15c3c2090c8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8813b4a7ac342460fd38993939ab936a = $(`<div id=&quot;html_8813b4a7ac342460fd38993939ab936a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11967979359 → 12187279999 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/802366683&quot; target=&quot;_blank&quot;>802366683</a>, <a href=&quot;https://www.openstreetmap.org/way/249978862&quot; target=&quot;_blank&quot;>249978862</a>, <a href=&quot;https://www.openstreetmap.org/way/249978863&quot; target=&quot;_blank&quot;>249978863</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>['residential', 'service']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>181.14879454295163</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>['West Evergreen Avenue', 'West Potomac Avenue']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr>             </table>         </div>         </div>`)[0];
                popup_15ad0e2b66a411f9e0ade15c3c2090c8.setContent(html_8813b4a7ac342460fd38993939ab936a);
            
        

        poly_line_4db029984437b83fb2a03dff78229f50.bindPopup(popup_15ad0e2b66a411f9e0ade15c3c2090c8)
        ;

        
    
    
            var poly_line_4b70296563a40a7c1665aee61baecad0 = L.polyline(
                [[41.9062104, -87.6598414], [41.906153, -87.6598307], [41.9056381, -87.6597367], [41.9055644, -87.6597211]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c13f497c82d5f04721b2211b2183182f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_12f12bee8f4850c4e631ca10f0fd41e3 = $(`<div id=&quot;html_12f12bee8f4850c4e631ca10f0fd41e3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11967979359 → 12187279998 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316819992&quot; target=&quot;_blank&quot;>1316819992</a>, <a href=&quot;https://www.openstreetmap.org/way/1316819995&quot; target=&quot;_blank&quot;>1316819995</a>, <a href=&quot;https://www.openstreetmap.org/way/1316819996&quot; target=&quot;_blank&quot;>1316819996</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>72.52027031055087</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>Elston Avenue Bikeway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_c13f497c82d5f04721b2211b2183182f.setContent(html_12f12bee8f4850c4e631ca10f0fd41e3);
            
        

        poly_line_4b70296563a40a7c1665aee61baecad0.bindPopup(popup_c13f497c82d5f04721b2211b2183182f)
        ;

        
    
    
            var poly_line_0f70668ec7a2e52ff9b54ce9aede0229 = L.polyline(
                [[41.8970635, -87.6565565], [41.8969842, -87.6565542]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fb65b6fcbddff4887c55d2ff06d27058 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5498a8db7976a1d5a11f29ec9b336d07 = $(`<div id=&quot;html_5498a8db7976a1d5a11f29ec9b336d07&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11967979365 → 365026544 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435657943&quot; target=&quot;_blank&quot;>435657943</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>3</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>8.81982478757355</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_fb65b6fcbddff4887c55d2ff06d27058.setContent(html_5498a8db7976a1d5a11f29ec9b336d07);
            
        

        poly_line_0f70668ec7a2e52ff9b54ce9aede0229.bindPopup(popup_fb65b6fcbddff4887c55d2ff06d27058)
        ;

        
    
    
            var poly_line_2025d6336903f3b3ffd97bc9780941fc = L.polyline(
                [[41.8970635, -87.6565565], [41.8970883, -87.6565566], [41.897307, -87.6565669]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3e43adcfea419806ef07465eeb503747 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_71ac1df19cb10bd0d4eb3b14f5d5b9bc = $(`<div id=&quot;html_71ac1df19cb10bd0d4eb3b14f5d5b9bc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11967979365 → 261116829 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435657943&quot; target=&quot;_blank&quot;>435657943</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>3</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>27.090953412631613</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_3e43adcfea419806ef07465eeb503747.setContent(html_71ac1df19cb10bd0d4eb3b14f5d5b9bc);
            
        

        poly_line_2025d6336903f3b3ffd97bc9780941fc.bindPopup(popup_3e43adcfea419806ef07465eeb503747)
        ;

        
    
    
            var poly_line_4677555fb95ab672d02991b50ec0bfbf = L.polyline(
                [[41.8970635, -87.6565565], [41.8971531, -87.6566963], [41.8972934, -87.6569151], [41.8974896, -87.6572212], [41.8975177, -87.6572651], [41.8975389, -87.6572982], [41.897637, -87.6574497], [41.8976972, -87.6575454]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5109ebbe527812850624d5a9fa1e68f6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5a4695b4893925970a77fc362073c8e3 = $(`<div id=&quot;html_5a4695b4893925970a77fc362073c8e3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11967979365 → 12289051304 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1328260245&quot; target=&quot;_blank&quot;>1328260245</a>, <a href=&quot;https://www.openstreetmap.org/way/1328260246&quot; target=&quot;_blank&quot;>1328260246</a>, <a href=&quot;https://www.openstreetmap.org/way/1328260247&quot; target=&quot;_blank&quot;>1328260247</a>, <a href=&quot;https://www.openstreetmap.org/way/1328260250&quot; target=&quot;_blank&quot;>1328260250</a>, <a href=&quot;https://www.openstreetmap.org/way/1328260251&quot; target=&quot;_blank&quot;>1328260251</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>108.00247226313589</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>Milwaukee Avenue Bikeway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_5109ebbe527812850624d5a9fa1e68f6.setContent(html_5a4695b4893925970a77fc362073c8e3);
            
        

        poly_line_4677555fb95ab672d02991b50ec0bfbf.bindPopup(popup_5109ebbe527812850624d5a9fa1e68f6)
        ;

        
    
    
            var poly_line_8e773413616dc2c62c3875d85be63931 = L.polyline(
                [[41.9089763, -87.6549475], [41.9090363, -87.6548178]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_17dee3f20e6015e89c15cf037daa8021 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5225eac73287b97bb620f2cb2d877e6c = $(`<div id=&quot;html_5225eac73287b97bb620f2cb2d877e6c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11968102694 → 9581012022 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24083759&quot; target=&quot;_blank&quot;>24083759</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>12.637556619456376</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Weed Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_17dee3f20e6015e89c15cf037daa8021.setContent(html_5225eac73287b97bb620f2cb2d877e6c);
            
        

        poly_line_8e773413616dc2c62c3875d85be63931.bindPopup(popup_17dee3f20e6015e89c15cf037daa8021)
        ;

        
    
    
            var poly_line_695df983d5fb750db51140494edf723e = L.polyline(
                [[41.9089763, -87.6549475], [41.90915, -87.6550862]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2a78996698852668c1d6c06b7375736a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9f307034e73062fa570ab784fa4fdfdc = $(`<div id=&quot;html_9f307034e73062fa570ab784fa4fdfdc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11968102694 → 11968102697 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1290804661&quot; target=&quot;_blank&quot;>1290804661</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.467554486684374</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_2a78996698852668c1d6c06b7375736a.setContent(html_9f307034e73062fa570ab784fa4fdfdc);
            
        

        poly_line_695df983d5fb750db51140494edf723e.bindPopup(popup_2a78996698852668c1d6c06b7375736a)
        ;

        
    
    
            var poly_line_efee53d8f0eab6d362bd4db4986a6483 = L.polyline(
                [[41.9089763, -87.6549475], [41.9087587, -87.6554242], [41.9087553, -87.6554313]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0b20a2f8d290df456fe2204182335f95 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6359c27d7341ddb28e50ce93c96b1539 = $(`<div id=&quot;html_6359c27d7341ddb28e50ce93c96b1539&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11968102694 → 12177117212 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24083759&quot; target=&quot;_blank&quot;>24083759</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>46.97603768469917</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Weed Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_0b20a2f8d290df456fe2204182335f95.setContent(html_6359c27d7341ddb28e50ce93c96b1539);
            
        

        poly_line_efee53d8f0eab6d362bd4db4986a6483.bindPopup(popup_0b20a2f8d290df456fe2204182335f95)
        ;

        
    
    
            var poly_line_c1a571837f291cce2908ac264ade03c3 = L.polyline(
                [[41.90915, -87.6550862], [41.9089763, -87.6549475]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_916f498e18a8bc4cc8c9e88e600ee4eb = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_cd2b0b249b7e032cfff24fa235bfc162 = $(`<div id=&quot;html_cd2b0b249b7e032cfff24fa235bfc162&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 11968102697 → 11968102694 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1290804661&quot; target=&quot;_blank&quot;>1290804661</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>22.467554486684374</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_916f498e18a8bc4cc8c9e88e600ee4eb.setContent(html_cd2b0b249b7e032cfff24fa235bfc162);
            
        

        poly_line_c1a571837f291cce2908ac264ade03c3.bindPopup(popup_916f498e18a8bc4cc8c9e88e600ee4eb)
        ;

        
    
    
            var poly_line_5f5219270d4e23d2e3698e07ff59c9bf = L.polyline(
                [[41.9093373, -87.6473408], [41.9096657, -87.6477929]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_031fb19430d0e25222a8c3652bfb0586 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_02470f2a102d4bb2a198f10688b8049e = $(`<div id=&quot;html_02470f2a102d4bb2a198f10688b8049e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12049414896 → 263985031 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1300921636&quot; target=&quot;_blank&quot;>1300921636</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>52.27911091898407</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Clybourn Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_031fb19430d0e25222a8c3652bfb0586.setContent(html_02470f2a102d4bb2a198f10688b8049e);
            
        

        poly_line_5f5219270d4e23d2e3698e07ff59c9bf.bindPopup(popup_031fb19430d0e25222a8c3652bfb0586)
        ;

        
    
    
            var poly_line_077bc1641f4fe6100abf176f981c7e38 = L.polyline(
                [[41.9093373, -87.6473408], [41.9091703, -87.6471045]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_67dbdd91d699e3092e940fefb5fbeff6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2ea1cb160f6d12cc78ef4d94aad50bfd = $(`<div id=&quot;html_2ea1cb160f6d12cc78ef4d94aad50bfd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12049414896 → 12049414897 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1300921637&quot; target=&quot;_blank&quot;>1300921637</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>26.96660670927576</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Clybourn Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_67dbdd91d699e3092e940fefb5fbeff6.setContent(html_2ea1cb160f6d12cc78ef4d94aad50bfd);
            
        

        poly_line_077bc1641f4fe6100abf176f981c7e38.bindPopup(popup_67dbdd91d699e3092e940fefb5fbeff6)
        ;

        
    
    
            var poly_line_c8a9d1f7a69e6ccb4210bcc6a79ae830 = L.polyline(
                [[41.9091703, -87.6471045], [41.9089922, -87.6468571]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c66f8f6f9745718611bcd79528f7f4bd = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_48ffd9eaa28357fa18e59a76fd33dec2 = $(`<div id=&quot;html_48ffd9eaa28357fa18e59a76fd33dec2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12049414897 → 2387185283 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435397259&quot; target=&quot;_blank&quot;>435397259</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>28.483850970322564</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Clybourn Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_c66f8f6f9745718611bcd79528f7f4bd.setContent(html_48ffd9eaa28357fa18e59a76fd33dec2);
            
        

        poly_line_c8a9d1f7a69e6ccb4210bcc6a79ae830.bindPopup(popup_c66f8f6f9745718611bcd79528f7f4bd)
        ;

        
    
    
            var poly_line_b54a49052392d8a5a422394fd23fc499 = L.polyline(
                [[41.9091703, -87.6471045], [41.9093373, -87.6473408]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_19e7169439117fd110cbd4bb630fcef7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5e3c0410f686a4de8f27ad3edc737c46 = $(`<div id=&quot;html_5e3c0410f686a4de8f27ad3edc737c46&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12049414897 → 12049414896 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1300921637&quot; target=&quot;_blank&quot;>1300921637</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>26.96660670927576</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Clybourn Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_19e7169439117fd110cbd4bb630fcef7.setContent(html_5e3c0410f686a4de8f27ad3edc737c46);
            
        

        poly_line_b54a49052392d8a5a422394fd23fc499.bindPopup(popup_19e7169439117fd110cbd4bb630fcef7)
        ;

        
    
    
            var poly_line_3a777b96d6abd0f76e672ee1e5e4b2d5 = L.polyline(
                [[41.9091703, -87.6471045], [41.9090839, -87.6470938], [41.9088814, -87.6468104], [41.9083702, -87.646095], [41.9083708, -87.6459937]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_04322eb0a3221ae81c5195d1d72c1cf9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_873863f98efbe27594705a11331db42c = $(`<div id=&quot;html_873863f98efbe27594705a11331db42c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12049414897 → 12049414903 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1300921639&quot; target=&quot;_blank&quot;>1300921639</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>132.61533743027704</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Clybourn Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_04322eb0a3221ae81c5195d1d72c1cf9.setContent(html_873863f98efbe27594705a11331db42c);
            
        

        poly_line_3a777b96d6abd0f76e672ee1e5e4b2d5.bindPopup(popup_04322eb0a3221ae81c5195d1d72c1cf9)
        ;

        
    
    
            var poly_line_abefb813af445345d2b5cf4836d75ade = L.polyline(
                [[41.9065322, -87.6432976], [41.9064567, -87.6432955]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4d5c4f6236a1643538834777db33d4b5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8208ce7270ac8ba3a895da21fad28788 = $(`<div id=&quot;html_8208ce7270ac8ba3a895da21fad28788&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12049414900 → 102708201 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/244501328&quot; target=&quot;_blank&quot;>244501328</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>8.397027368481837</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_4d5c4f6236a1643538834777db33d4b5.setContent(html_8208ce7270ac8ba3a895da21fad28788);
            
        

        poly_line_abefb813af445345d2b5cf4836d75ade.bindPopup(popup_4d5c4f6236a1643538834777db33d4b5)
        ;

        
    
    
            var poly_line_d448a8257fe0b5fe9c8b6e19abffa78d = L.polyline(
                [[41.9065322, -87.6432976], [41.9065846, -87.6432991], [41.907027, -87.6433116], [41.9072336, -87.6433174], [41.9073945, -87.643322], [41.907559, -87.6433266]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4af414540f5e818cfbb61fbc60cd53eb = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5d618f92ded704493766753c4f4b3e41 = $(`<div id=&quot;html_5d618f92ded704493766753c4f4b3e41&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12049414900 → 2204462532 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/244501328&quot; target=&quot;_blank&quot;>244501328</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>114.20033258606128</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Larrabee Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_4af414540f5e818cfbb61fbc60cd53eb.setContent(html_5d618f92ded704493766753c4f4b3e41);
            
        

        poly_line_d448a8257fe0b5fe9c8b6e19abffa78d.bindPopup(popup_4af414540f5e818cfbb61fbc60cd53eb)
        ;

        
    
    
            var poly_line_8d7f0f04becad9203960195faeb920d5 = L.polyline(
                [[41.9065322, -87.6432976], [41.906604, -87.6433976], [41.9080498, -87.6454111], [41.9080955, -87.6454747]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a2e341933ae37ee7eedffa919b221545 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f0fe9d9711dd680e702d8714620da0ec = $(`<div id=&quot;html_f0fe9d9711dd680e702d8714620da0ec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12049414900 → 12049414914 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1300921638&quot; target=&quot;_blank&quot;>1300921638</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>250.35279521383933</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Clybourn Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_a2e341933ae37ee7eedffa919b221545.setContent(html_f0fe9d9711dd680e702d8714620da0ec);
            
        

        poly_line_8d7f0f04becad9203960195faeb920d5.bindPopup(popup_a2e341933ae37ee7eedffa919b221545)
        ;

        
    
    
            var poly_line_3c02b4d5066753be9f8a321f09841641 = L.polyline(
                [[41.9083708, -87.6459937], [41.9086039, -87.6463176], [41.9089216, -87.646759], [41.9089922, -87.6468571]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_baa72f6af9b1dcd8edc77115aab16d4f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_13d58d566ef03ecca3b2f52bacbe0c5f = $(`<div id=&quot;html_13d58d566ef03ecca3b2f52bacbe0c5f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12049414903 → 2387185283 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435397259&quot; target=&quot;_blank&quot;>435397259</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>99.3943504350123</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Clybourn Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_baa72f6af9b1dcd8edc77115aab16d4f.setContent(html_13d58d566ef03ecca3b2f52bacbe0c5f);
            
        

        poly_line_3c02b4d5066753be9f8a321f09841641.bindPopup(popup_baa72f6af9b1dcd8edc77115aab16d4f)
        ;

        
    
    
            var poly_line_30b09823c290a43d529715134ecb5c1a = L.polyline(
                [[41.9083708, -87.6459937], [41.908191, -87.6457438], [41.9080692, -87.6455746], [41.9080479, -87.6455449], [41.9080308, -87.6455212]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1da6df7df6a474354dd32e908f12a709 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_99bfe2171bcb0173f48edb7976ba9256 = $(`<div id=&quot;html_99bfe2171bcb0173f48edb7976ba9256&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12049414903 → 263984906 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1300921640&quot; target=&quot;_blank&quot;>1300921640</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>54.38930968762525</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Clybourn Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_1da6df7df6a474354dd32e908f12a709.setContent(html_99bfe2171bcb0173f48edb7976ba9256);
            
        

        poly_line_30b09823c290a43d529715134ecb5c1a.bindPopup(popup_1da6df7df6a474354dd32e908f12a709)
        ;

        
    
    
            var poly_line_a2591226c8f2398ed28353cfefa72f8c = L.polyline(
                [[41.9075642, -87.6448639], [41.9071762, -87.6443173], [41.9070954, -87.6442035]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_28916db9a5b0c46feb94ce92d3df1401 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4cc736b007c116e0d0804b8d941a4a31 = $(`<div id=&quot;html_4cc736b007c116e0d0804b8d941a4a31&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12049414904 → 935894931 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435397258&quot; target=&quot;_blank&quot;>435397258</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>75.52535380312072</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Clybourn Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_28916db9a5b0c46feb94ce92d3df1401.setContent(html_4cc736b007c116e0d0804b8d941a4a31);
            
        

        poly_line_a2591226c8f2398ed28353cfefa72f8c.bindPopup(popup_28916db9a5b0c46feb94ce92d3df1401)
        ;

        
    
    
            var poly_line_9e1b799e2c39151e629a766f7453642f = L.polyline(
                [[41.9075642, -87.6448639], [41.9075847, -87.6448928], [41.9077148, -87.645076], [41.9079757, -87.6454436], [41.9080308, -87.6455212]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_92514c85149fed47905f00018b36433d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_95e7f64b81cc464c1a8d78c38a94604d = $(`<div id=&quot;html_95e7f64b81cc464c1a8d78c38a94604d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12049414904 → 263984906 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1300921641&quot; target=&quot;_blank&quot;>1300921641</a>, <a href=&quot;https://www.openstreetmap.org/way/435397257&quot; target=&quot;_blank&quot;>435397257</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>3</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>75.17058731039184</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Clybourn Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_92514c85149fed47905f00018b36433d.setContent(html_95e7f64b81cc464c1a8d78c38a94604d);
            
        

        poly_line_9e1b799e2c39151e629a766f7453642f.bindPopup(popup_92514c85149fed47905f00018b36433d)
        ;

        
    
    
            var poly_line_2e98fadb085e686f2f85f9a4454ebe2b = L.polyline(
                [[41.9075642, -87.6448639], [41.9074852, -87.6448584], [41.9070152, -87.6442035]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_bf20a364772022df7a493a446a2c2b0f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8088a9f24a58217a9ca73fe2ddc41c04 = $(`<div id=&quot;html_8088a9f24a58217a9ca73fe2ddc41c04&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12049414904 → 12049414910 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1300921642&quot; target=&quot;_blank&quot;>1300921642</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>84.08546471556464</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Clybourn Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_bf20a364772022df7a493a446a2c2b0f.setContent(html_8088a9f24a58217a9ca73fe2ddc41c04);
            
        

        poly_line_2e98fadb085e686f2f85f9a4454ebe2b.bindPopup(popup_bf20a364772022df7a493a446a2c2b0f)
        ;

        
    
    
            var poly_line_7328131decc1e63c5fc33667fbabef88 = L.polyline(
                [[41.9069226, -87.6439578], [41.9070954, -87.6442035]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d9f226d42b32c7eabef027feeb666f8d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0c72fd73e9762b7fafc44cb0908d6c74 = $(`<div id=&quot;html_0c72fd73e9762b7fafc44cb0908d6c74&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12049414909 → 935894931 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435397258&quot; target=&quot;_blank&quot;>435397258</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>27.97537092884475</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Clybourn Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_d9f226d42b32c7eabef027feeb666f8d.setContent(html_0c72fd73e9762b7fafc44cb0908d6c74);
            
        

        poly_line_7328131decc1e63c5fc33667fbabef88.bindPopup(popup_d9f226d42b32c7eabef027feeb666f8d)
        ;

        
    
    
            var poly_line_35834421d319b1abf8bb488499e0479e = L.polyline(
                [[41.9069226, -87.6439578], [41.9067132, -87.6436601], [41.9065245, -87.6433918], [41.9064567, -87.6432955]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d0265c98d2f8ca611d1a30d6490b9f93 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_cbb61f5d2bf0c879deac6fe10e4fdb2a = $(`<div id=&quot;html_cbb61f5d2bf0c879deac6fe10e4fdb2a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12049414909 → 102708201 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435397256&quot; target=&quot;_blank&quot;>435397256</a>, <a href=&quot;https://www.openstreetmap.org/way/1300921643&quot; target=&quot;_blank&quot;>1300921643</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>3</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>75.4177359590049</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Clybourn Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_d0265c98d2f8ca611d1a30d6490b9f93.setContent(html_cbb61f5d2bf0c879deac6fe10e4fdb2a);
            
        

        poly_line_35834421d319b1abf8bb488499e0479e.bindPopup(popup_d0265c98d2f8ca611d1a30d6490b9f93)
        ;

        
    
    
            var poly_line_cab3a42c2fd1a6043e5f25b15b28a8e4 = L.polyline(
                [[41.9070152, -87.6442035], [41.9070954, -87.6442035]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d985adf46a5dcce4f8abacec402df31a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_bf6230bb0b1790fff272a190d515748f = $(`<div id=&quot;html_bf6230bb0b1790fff272a190d515748f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12049414910 → 935894931 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/80207803&quot; target=&quot;_blank&quot;>80207803</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>8.917845715423928</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_d985adf46a5dcce4f8abacec402df31a.setContent(html_bf6230bb0b1790fff272a190d515748f);
            
        

        poly_line_cab3a42c2fd1a6043e5f25b15b28a8e4.bindPopup(popup_d985adf46a5dcce4f8abacec402df31a)
        ;

        
    
    
            var poly_line_b6485fcdb5a90e42c2a7228510178e08 = L.polyline(
                [[41.9070152, -87.6442035], [41.9069782, -87.6442035], [41.9065163, -87.6442033], [41.9064087, -87.6442033]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3c9e72064554ecd2a447cfcf69597784 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_af6bcdb5a9358cb14fb39c30e629d109 = $(`<div id=&quot;html_af6bcdb5a9358cb14fb39c30e629d109&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12049414910 → 261260007 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/80207803&quot; target=&quot;_blank&quot;>80207803</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>67.43982094477934</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_3c9e72064554ecd2a447cfcf69597784.setContent(html_af6bcdb5a9358cb14fb39c30e629d109);
            
        

        poly_line_b6485fcdb5a90e42c2a7228510178e08.bindPopup(popup_3c9e72064554ecd2a447cfcf69597784)
        ;

        
    
    
            var poly_line_67e5a88de7cdb922ca0e445f0f5f01cb = L.polyline(
                [[41.9070152, -87.6442035], [41.9069237, -87.644076], [41.9069226, -87.6439578]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2bbf51b677e75678f0c2c617c9b38456 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9c622688e4aaedf13a243c0eb57ff70c = $(`<div id=&quot;html_9c622688e4aaedf13a243c0eb57ff70c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12049414910 → 12049414909 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1300921642&quot; target=&quot;_blank&quot;>1300921642</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>24.440005027750637</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Clybourn Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_2bbf51b677e75678f0c2c617c9b38456.setContent(html_9c622688e4aaedf13a243c0eb57ff70c);
            
        

        poly_line_67e5a88de7cdb922ca0e445f0f5f01cb.bindPopup(popup_2bbf51b677e75678f0c2c617c9b38456)
        ;

        
    
    
            var poly_line_0bdd5681846f6588c30e9f426a7df753 = L.polyline(
                [[41.9080955, -87.6454747], [41.9080308, -87.6455212]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3cbad5cb8900f2a85dcaff05e8b7fbfd = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_cc8d253f74a3f04ef749dafed704d738 = $(`<div id=&quot;html_cc8d253f74a3f04ef749dafed704d738&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12049414914 → 263984906 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230246636&quot; target=&quot;_blank&quot;>230246636</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>8.158774587270683</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Ogden Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_3cbad5cb8900f2a85dcaff05e8b7fbfd.setContent(html_cc8d253f74a3f04ef749dafed704d738);
            
        

        poly_line_0bdd5681846f6588c30e9f426a7df753.bindPopup(popup_3cbad5cb8900f2a85dcaff05e8b7fbfd)
        ;

        
    
    
            var poly_line_dd30bacb37413a37fec939b3de357226 = L.polyline(
                [[41.9080955, -87.6454747], [41.9081176, -87.6454588], [41.90903, -87.644803]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0aaede5acc8b86dc0932ba0c76dad904 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_84c583bed8b8d60e6c996dcfeaf5d9fb = $(`<div id=&quot;html_84c583bed8b8d60e6c996dcfeaf5d9fb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12049414914 → 2387686680 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230246636&quot; target=&quot;_blank&quot;>230246636</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>117.84461515657449</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Ogden Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_0aaede5acc8b86dc0932ba0c76dad904.setContent(html_84c583bed8b8d60e6c996dcfeaf5d9fb);
            
        

        poly_line_dd30bacb37413a37fec939b3de357226.bindPopup(popup_0aaede5acc8b86dc0932ba0c76dad904)
        ;

        
    
    
            var poly_line_368b32c524354c25bd4da27a8256c4ab = L.polyline(
                [[41.9080955, -87.6454747], [41.9081201, -87.6455089], [41.9089703, -87.6466929], [41.9090319, -87.6467787]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_932c7f134d3c6e2b81c97d8614c64636 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_eed9c13394cfaff4e5273071f53d6465 = $(`<div id=&quot;html_eed9c13394cfaff4e5273071f53d6465&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12049414914 → 12049414915 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1300921638&quot; target=&quot;_blank&quot;>1300921638</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>149.9535787940396</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Clybourn Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_932c7f134d3c6e2b81c97d8614c64636.setContent(html_eed9c13394cfaff4e5273071f53d6465);
            
        

        poly_line_368b32c524354c25bd4da27a8256c4ab.bindPopup(popup_932c7f134d3c6e2b81c97d8614c64636)
        ;

        
    
    
            var poly_line_4a5535da17544e178107c95ec6eaadd7 = L.polyline(
                [[41.9090319, -87.6467787], [41.9090528, -87.6468078]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2899eb0ab0d4849496e0d3bee99d41a4 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_84e39f70932cf6e2ab778adea560e853 = $(`<div id=&quot;html_84e39f70932cf6e2ab778adea560e853&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12049414915 → 12049414916 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1300921638&quot; target=&quot;_blank&quot;>1300921638</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>3.3466018497954484</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Clybourn Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_2899eb0ab0d4849496e0d3bee99d41a4.setContent(html_84e39f70932cf6e2ab778adea560e853);
            
        

        poly_line_4a5535da17544e178107c95ec6eaadd7.bindPopup(popup_2899eb0ab0d4849496e0d3bee99d41a4)
        ;

        
    
    
            var poly_line_48cf80e3d5a692873abb44c86b23ddb7 = L.polyline(
                [[41.9090319, -87.6467787], [41.9090761, -87.6466916], [41.9093117, -87.646397]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c84248252a3ef03f175444807c200b96 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b4a939ff8fb21d13f74fec8b359c950c = $(`<div id=&quot;html_b4a939ff8fb21d13f74fec8b359c950c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12049414915 → 2387185316 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187857&quot; target=&quot;_blank&quot;>230187857</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>44.50983898709573</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_c84248252a3ef03f175444807c200b96.setContent(html_b4a939ff8fb21d13f74fec8b359c950c);
            
        

        poly_line_48cf80e3d5a692873abb44c86b23ddb7.bindPopup(popup_c84248252a3ef03f175444807c200b96)
        ;

        
    
    
            var poly_line_6062996b0ac02aa8dd0aeedba005e914 = L.polyline(
                [[41.9090528, -87.6468078], [41.9089922, -87.6468571]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3935afd0e956d94fb4ce628f53bdc61d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7e0447697a4a09ec5d3e06947ab2fe26 = $(`<div id=&quot;html_7e0447697a4a09ec5d3e06947ab2fe26&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12049414916 → 2387185283 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/230187831&quot; target=&quot;_blank&quot;>230187831</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.8771888931912235</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_3935afd0e956d94fb4ce628f53bdc61d.setContent(html_7e0447697a4a09ec5d3e06947ab2fe26);
            
        

        poly_line_6062996b0ac02aa8dd0aeedba005e914.bindPopup(popup_3935afd0e956d94fb4ce628f53bdc61d)
        ;

        
    
    
            var poly_line_38ff785c837b015dd3a6b0b90973b0f8 = L.polyline(
                [[41.9090528, -87.6468078], [41.909339, -87.647207], [41.9093373, -87.6473408]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_662f9c20e8d77be58eabbda09b502c09 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7469a343402cb30a16f15a88e240069d = $(`<div id=&quot;html_7469a343402cb30a16f15a88e240069d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12049414916 → 12049414896 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1300921638&quot; target=&quot;_blank&quot;>1300921638</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>56.94371542313595</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Clybourn Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_662f9c20e8d77be58eabbda09b502c09.setContent(html_7469a343402cb30a16f15a88e240069d);
            
        

        poly_line_38ff785c837b015dd3a6b0b90973b0f8.bindPopup(popup_662f9c20e8d77be58eabbda09b502c09)
        ;

        
    
    
            var poly_line_ec09a63f403ad93401907450f69df54d = L.polyline(
                [[41.9075744, -87.6541799], [41.9077121, -87.6542932]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_062eb07fd5b8de3efc30e7b6f4605e09 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f4b5a341f11586bffdf3167096fa84ec = $(`<div id=&quot;html_f4b5a341f11586bffdf3167096fa84ec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12107616294 → 7505818087 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/802413164&quot; target=&quot;_blank&quot;>802413164</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>17.954208626477083</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_062eb07fd5b8de3efc30e7b6f4605e09.setContent(html_f4b5a341f11586bffdf3167096fa84ec);
            
        

        poly_line_ec09a63f403ad93401907450f69df54d.bindPopup(popup_062eb07fd5b8de3efc30e7b6f4605e09)
        ;

        
    
    
            var poly_line_d83ea4b66c0df0599699554264a1bea1 = L.polyline(
                [[41.9075744, -87.6541799], [41.9076646, -87.6539818]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6a15e2a7b926ed93eb5bb06dfce632b6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_cda7db04499c9580e67b6e5277fdfe5b = $(`<div id=&quot;html_cda7db04499c9580e67b6e5277fdfe5b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12107616294 → 12107616295 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1307412676&quot; target=&quot;_blank&quot;>1307412676</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.218357807173703</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_6a15e2a7b926ed93eb5bb06dfce632b6.setContent(html_cda7db04499c9580e67b6e5277fdfe5b);
            
        

        poly_line_d83ea4b66c0df0599699554264a1bea1.bindPopup(popup_6a15e2a7b926ed93eb5bb06dfce632b6)
        ;

        
    
    
            var poly_line_3d345400cf67751b8563a2c1ddca5352 = L.polyline(
                [[41.9075744, -87.6541799], [41.9072214, -87.6538896], [41.9072125, -87.6538687], [41.9072181, -87.6538412], [41.9072457, -87.6537767], [41.9072721, -87.6537233], [41.9072864, -87.6537101], [41.9073014, -87.6537127], [41.9076646, -87.6539818]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_454235d36780b23c6966eda601e94b42 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b1ae492e3f9ebc832fd2983cc33d3771 = $(`<div id=&quot;html_b1ae492e3f9ebc832fd2983cc33d3771&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12107616294 → 12107616295 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/802413164&quot; target=&quot;_blank&quot;>802413164</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>111.56411939054584</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_454235d36780b23c6966eda601e94b42.setContent(html_b1ae492e3f9ebc832fd2983cc33d3771);
            
        

        poly_line_3d345400cf67751b8563a2c1ddca5352.bindPopup(popup_454235d36780b23c6966eda601e94b42)
        ;

        
    
    
            var poly_line_36762d54811113ee52486255de5f076b = L.polyline(
                [[41.9076646, -87.6539818], [41.9075744, -87.6541799]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_928858e2189e28e3bdf412962cbb31fb = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3f4baea4b92750ac958a444eaf6c7734 = $(`<div id=&quot;html_3f4baea4b92750ac958a444eaf6c7734&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12107616295 → 12107616294 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1307412676&quot; target=&quot;_blank&quot;>1307412676</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.218357807173703</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_928858e2189e28e3bdf412962cbb31fb.setContent(html_3f4baea4b92750ac958a444eaf6c7734);
            
        

        poly_line_36762d54811113ee52486255de5f076b.bindPopup(popup_928858e2189e28e3bdf412962cbb31fb)
        ;

        
    
    
            var poly_line_b30da5326f1a1162fc96c02fb4f3a0a9 = L.polyline(
                [[41.9076646, -87.6539818], [41.9073014, -87.6537127], [41.9072864, -87.6537101], [41.9072721, -87.6537233], [41.9072457, -87.6537767], [41.9072181, -87.6538412], [41.9072125, -87.6538687], [41.9072214, -87.6538896], [41.9075744, -87.6541799]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ab3daf04c95bb952af6b1019aa1d4439 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_06474f7232db8bcca81257d26e2feddb = $(`<div id=&quot;html_06474f7232db8bcca81257d26e2feddb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12107616295 → 12107616294 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/802413164&quot; target=&quot;_blank&quot;>802413164</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>111.56411939054584</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_ab3daf04c95bb952af6b1019aa1d4439.setContent(html_06474f7232db8bcca81257d26e2feddb);
            
        

        poly_line_b30da5326f1a1162fc96c02fb4f3a0a9.bindPopup(popup_ab3daf04c95bb952af6b1019aa1d4439)
        ;

        
    
    
            var poly_line_1989500f92aa6207b8dacbfe970bd807 = L.polyline(
                [[41.9076646, -87.6539818], [41.9078036, -87.6540848], [41.9077121, -87.6542932]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b5a56ae3c8c98afd2bf0d200ff1a12d4 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_baa9851ccdc12c0de6da2536654ffc10 = $(`<div id=&quot;html_baa9851ccdc12c0de6da2536654ffc10&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12107616295 → 7505818087 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/802413168&quot; target=&quot;_blank&quot;>802413168</a>, <a href=&quot;https://www.openstreetmap.org/way/802413164&quot; target=&quot;_blank&quot;>802413164</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>37.67403546830853</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_b5a56ae3c8c98afd2bf0d200ff1a12d4.setContent(html_baa9851ccdc12c0de6da2536654ffc10);
            
        

        poly_line_1989500f92aa6207b8dacbfe970bd807.bindPopup(popup_b5a56ae3c8c98afd2bf0d200ff1a12d4)
        ;

        
    
    
            var poly_line_6ae824ed0cd9b74888684817e37d3587 = L.polyline(
                [[41.9071569, -87.6554457], [41.9071692, -87.6554461]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0c268db7b1dcf9cb696605fde6f629e9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3be721676668399375b09dbc28c393b3 = $(`<div id=&quot;html_3be721676668399375b09dbc28c393b3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12107616297 → 3762220118 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/372671695&quot; target=&quot;_blank&quot;>372671695</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>1.3681000452777121</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Cherry Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_0c268db7b1dcf9cb696605fde6f629e9.setContent(html_3be721676668399375b09dbc28c393b3);
            
        

        poly_line_6ae824ed0cd9b74888684817e37d3587.bindPopup(popup_0c268db7b1dcf9cb696605fde6f629e9)
        ;

        
    
    
            var poly_line_496a66d5314d2169a0056453a0ef9d3e = L.polyline(
                [[41.9071569, -87.6554457], [41.9070259, -87.6554415], [41.9069345, -87.6554385]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_64c2d13d0df03f87cd2bec2246282b1c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_03c854c811c2eb71067319b7d76fdd3f = $(`<div id=&quot;html_03c854c811c2eb71067319b7d76fdd3f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12107616297 → 9391285666 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/372671695&quot; target=&quot;_blank&quot;>372671695</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>24.73696447395175</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Cherry Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_64c2d13d0df03f87cd2bec2246282b1c.setContent(html_03c854c811c2eb71067319b7d76fdd3f);
            
        

        poly_line_496a66d5314d2169a0056453a0ef9d3e.bindPopup(popup_64c2d13d0df03f87cd2bec2246282b1c)
        ;

        
    
    
            var poly_line_804af303e22b0a69f57884618a1baca3 = L.polyline(
                [[41.9071569, -87.6554457], [41.9071564, -87.6553832], [41.9071579, -87.6553405]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_161eac26f5ee769c1c17e9cd76f04ef8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_aa08cced4ac678b1f552dff055b36280 = $(`<div id=&quot;html_aa08cced4ac678b1f552dff055b36280&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12107616297 → 734235752 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1307412679&quot; target=&quot;_blank&quot;>1307412679</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>8.710007332740027</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_161eac26f5ee769c1c17e9cd76f04ef8.setContent(html_aa08cced4ac678b1f552dff055b36280);
            
        

        poly_line_804af303e22b0a69f57884618a1baca3.bindPopup(popup_161eac26f5ee769c1c17e9cd76f04ef8)
        ;

        
    
    
            var poly_line_66e4eb0c51b1ce59105f716a528abb48 = L.polyline(
                [[41.9014562, -87.6616063], [41.9013502, -87.6614536]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_35034b6dba58d5a5bbbcc152fbfd6126 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0633834c9ec98a07a28518494e77db8b = $(`<div id=&quot;html_0633834c9ec98a07a28518494e77db8b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12156678399 → 261092285 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/32468937&quot; target=&quot;_blank&quot;>32468937</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>17.28116257191386</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Cortez Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_35034b6dba58d5a5bbbcc152fbfd6126.setContent(html_0633834c9ec98a07a28518494e77db8b);
            
        

        poly_line_66e4eb0c51b1ce59105f716a528abb48.bindPopup(popup_35034b6dba58d5a5bbbcc152fbfd6126)
        ;

        
    
    
            var poly_line_27e67ecf0c59f428fdc786b76719479c = L.polyline(
                [[41.9014562, -87.6616063], [41.9014765, -87.6615946], [41.9014985, -87.6615918], [41.9015201, -87.6615982], [41.9015391, -87.6616133], [41.9015537, -87.6616356], [41.9015625, -87.6616628], [41.9015647, -87.6616923]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c66ad4d90151cc12bbd4b9ab5400df3e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_05022c8408f6dec3a4ebea3a48c7cb54 = $(`<div id=&quot;html_05022c8408f6dec3a4ebea3a48c7cb54&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12156678399 → 365024908 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59648583&quot; target=&quot;_blank&quot;>59648583</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>junction</td><td style='padding:2px 6px;'>roundabout</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>17.193896687280432</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_c66ad4d90151cc12bbd4b9ab5400df3e.setContent(html_05022c8408f6dec3a4ebea3a48c7cb54);
            
        

        poly_line_27e67ecf0c59f428fdc786b76719479c.bindPopup(popup_c66ad4d90151cc12bbd4b9ab5400df3e)
        ;

        
    
    
            var poly_line_10f7b92160db1373d6ca6f47ef2a1f4c = L.polyline(
                [[41.8998202, -87.6496814], [41.8998339, -87.6496678], [41.8998421, -87.6496593], [41.8999002, -87.6495999]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_228b403cbdfb31f84489835b26f0c1b5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2e998d9bf66299478d779ec490ca8cca = $(`<div id=&quot;html_2e998d9bf66299478d779ec490ca8cca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12177075886 → 12177075887 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1315559025&quot; target=&quot;_blank&quot;>1315559025</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>11.163996872053762</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_228b403cbdfb31f84489835b26f0c1b5.setContent(html_2e998d9bf66299478d779ec490ca8cca);
            
        

        poly_line_10f7b92160db1373d6ca6f47ef2a1f4c.bindPopup(popup_228b403cbdfb31f84489835b26f0c1b5)
        ;

        
    
    
            var poly_line_e9a4b6b9097c6a2cbef6509e93cd0fc9 = L.polyline(
                [[41.8999002, -87.6495999], [41.8995778, -87.6489814]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_cc2d16d44089651e03b7dabba25cfd47 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_73d4916f69e2ba8cc29457ab1accead5 = $(`<div id=&quot;html_73d4916f69e2ba8cc29457ab1accead5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12177075887 → 12191955752 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24096218&quot; target=&quot;_blank&quot;>24096218</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>62.49438478379552</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_cc2d16d44089651e03b7dabba25cfd47.setContent(html_73d4916f69e2ba8cc29457ab1accead5);
            
        

        poly_line_e9a4b6b9097c6a2cbef6509e93cd0fc9.bindPopup(popup_cc2d16d44089651e03b7dabba25cfd47)
        ;

        
    
    
            var poly_line_49141358be8e07c0e6c58c4edeb882df = L.polyline(
                [[41.8999002, -87.6495999], [41.9003008, -87.6503685], [41.9003464, -87.650456]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_17934ad7f582331ad47e6198f4457edc = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a5c562e04fcb1ae42c9e796cbb7003ee = $(`<div id=&quot;html_a5c562e04fcb1ae42c9e796cbb7003ee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12177075887 → 6776130126 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24096218&quot; target=&quot;_blank&quot;>24096218</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>86.49828543467848</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_17934ad7f582331ad47e6198f4457edc.setContent(html_a5c562e04fcb1ae42c9e796cbb7003ee);
            
        

        poly_line_49141358be8e07c0e6c58c4edeb882df.bindPopup(popup_17934ad7f582331ad47e6198f4457edc)
        ;

        
    
    
            var poly_line_32bdf22964d305da72230e39d6dc4fde = L.polyline(
                [[41.8999002, -87.6495999], [41.8998421, -87.6496593], [41.8998339, -87.6496678], [41.8998202, -87.6496814]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4b9e8a6ab90263e9b13be2c3c960f298 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a8e52ab1995befd38c38953a7d69c4bf = $(`<div id=&quot;html_a8e52ab1995befd38c38953a7d69c4bf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12177075887 → 12177075886 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1315559025&quot; target=&quot;_blank&quot;>1315559025</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>11.163996872053762</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_4b9e8a6ab90263e9b13be2c3c960f298.setContent(html_a8e52ab1995befd38c38953a7d69c4bf);
            
        

        poly_line_32bdf22964d305da72230e39d6dc4fde.bindPopup(popup_4b9e8a6ab90263e9b13be2c3c960f298)
        ;

        
    
    
            var poly_line_8240c6b023e9718fbfe9b48a488727c3 = L.polyline(
                [[41.9087553, -87.6554313], [41.9087303, -87.6554784]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_df91fdb5551518c136376dc59f1688e6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_dc4397937bb14a5e45344cdf1086a23f = $(`<div id=&quot;html_dc4397937bb14a5e45344cdf1086a23f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12177117212 → 261282329 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24083759&quot; target=&quot;_blank&quot;>24083759</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>4.787412471972446</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Weed Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_df91fdb5551518c136376dc59f1688e6.setContent(html_dc4397937bb14a5e45344cdf1086a23f);
            
        

        poly_line_8240c6b023e9718fbfe9b48a488727c3.bindPopup(popup_df91fdb5551518c136376dc59f1688e6)
        ;

        
    
    
            var poly_line_feccece0d6a87a0125e65e4e15fcd3e4 = L.polyline(
                [[41.9087553, -87.6554313], [41.9087587, -87.6554242], [41.9089763, -87.6549475]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8bd204fbb42dc22879eb07cdc2c9102f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c319c417d17ad2d41079ecd7d0f8a859 = $(`<div id=&quot;html_c319c417d17ad2d41079ecd7d0f8a859&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12177117212 → 11968102694 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24083759&quot; target=&quot;_blank&quot;>24083759</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>46.97603768469917</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Weed Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_8bd204fbb42dc22879eb07cdc2c9102f.setContent(html_c319c417d17ad2d41079ecd7d0f8a859);
            
        

        poly_line_feccece0d6a87a0125e65e4e15fcd3e4.bindPopup(popup_8bd204fbb42dc22879eb07cdc2c9102f)
        ;

        
    
    
            var poly_line_be2407f85315cf446e91668d90d029fe = L.polyline(
                [[41.9087553, -87.6554313], [41.9086674, -87.6554281], [41.9086226, -87.6554258], [41.9085876, -87.6554244], [41.9084973, -87.6553989], [41.908406, -87.6553795], [41.9083716, -87.6553805], [41.9082972, -87.6553828], [41.9082613, -87.6553911], [41.9082266, -87.6553963], [41.9081685, -87.6554051], [41.9081245, -87.6554117], [41.9079374, -87.655405], [41.9078356, -87.6553755], [41.9077258, -87.6553587], [41.9077065, -87.6553579], [41.9076187, -87.6553544]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_bfe5c0f83cb7b3d6ed75325e026b4b7b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_15be663542685f8715d055a4c202ed50 = $(`<div id=&quot;html_15be663542685f8715d055a4c202ed50&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12177117212 → 12177117216 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1315559033&quot; target=&quot;_blank&quot;>1315559033</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>127.24759349540454</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>Cherry Avenue Bikeway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_bfe5c0f83cb7b3d6ed75325e026b4b7b.setContent(html_15be663542685f8715d055a4c202ed50);
            
        

        poly_line_be2407f85315cf446e91668d90d029fe.bindPopup(popup_bfe5c0f83cb7b3d6ed75325e026b4b7b)
        ;

        
    
    
            var poly_line_98478e083974b1f4091d6708f26ca0c9 = L.polyline(
                [[41.9087553, -87.6554313], [41.9090337, -87.655444], [41.9095053, -87.6555106], [41.9099922, -87.6555202], [41.9100689, -87.65552], [41.910546, -87.65553]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f3bd96ac441a41536cf7e4525a9453f8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1641547a4c6e169b673c0d5a3de30080 = $(`<div id=&quot;html_1641547a4c6e169b673c0d5a3de30080&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12177117212 → 734236051 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1359094200&quot; target=&quot;_blank&quot;>1359094200</a>, <a href=&quot;https://www.openstreetmap.org/way/1315559040&quot; target=&quot;_blank&quot;>1315559040</a>, <a href=&quot;https://www.openstreetmap.org/way/236127718&quot; target=&quot;_blank&quot;>236127718</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>access</td><td style='padding:2px 6px;'>designated</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>bridge</td><td style='padding:2px 6px;'>movable</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>path</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>199.43598287018625</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>Goose Island Branch</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr>             </table>         </div>         </div>`)[0];
                popup_f3bd96ac441a41536cf7e4525a9453f8.setContent(html_1641547a4c6e169b673c0d5a3de30080);
            
        

        poly_line_98478e083974b1f4091d6708f26ca0c9.bindPopup(popup_f3bd96ac441a41536cf7e4525a9453f8)
        ;

        
    
    
            var poly_line_47b2c1ff354080556b3b467151add2b1 = L.polyline(
                [[41.9076187, -87.6553544], [41.9076158, -87.6554553]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_248d98b19bcc17d647a9bb59f1d3960b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e473e5a37bb47480d20e42136449725b = $(`<div id=&quot;html_e473e5a37bb47480d20e42136449725b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12177117216 → 5493314397 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626318&quot; target=&quot;_blank&quot;>571626318</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>8.3560940374487</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_248d98b19bcc17d647a9bb59f1d3960b.setContent(html_e473e5a37bb47480d20e42136449725b);
            
        

        poly_line_47b2c1ff354080556b3b467151add2b1.bindPopup(popup_248d98b19bcc17d647a9bb59f1d3960b)
        ;

        
    
    
            var poly_line_c85c834365cd18121abb65e8d4e283d8 = L.polyline(
                [[41.9076187, -87.6553544], [41.9076213, -87.6552641]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fc3bdd2d7684c307734b94791ef44687 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_55ebad522892a30f524c1ad41d4935e4 = $(`<div id=&quot;html_55ebad522892a30f524c1ad41d4935e4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12177117216 → 5493314398 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626318&quot; target=&quot;_blank&quot;>571626318</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.478268361030858</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_fc3bdd2d7684c307734b94791ef44687.setContent(html_55ebad522892a30f524c1ad41d4935e4);
            
        

        poly_line_c85c834365cd18121abb65e8d4e283d8.bindPopup(popup_fc3bdd2d7684c307734b94791ef44687)
        ;

        
    
    
            var poly_line_f2ba5beb897f5a1db159d61e5c769998 = L.polyline(
                [[41.9076187, -87.6553544], [41.9077065, -87.6553579], [41.9077258, -87.6553587], [41.9078356, -87.6553755], [41.9079374, -87.655405], [41.9081245, -87.6554117], [41.9081685, -87.6554051], [41.9082266, -87.6553963], [41.9082613, -87.6553911], [41.9082972, -87.6553828], [41.9083716, -87.6553805], [41.908406, -87.6553795], [41.9084973, -87.6553989], [41.9085876, -87.6554244], [41.9086226, -87.6554258], [41.9086674, -87.6554281], [41.9087553, -87.6554313]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f2bc0a71a9b145bc2d0fdf48788fe397 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_af1e03af700dbfe913879229292005a7 = $(`<div id=&quot;html_af1e03af700dbfe913879229292005a7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12177117216 → 12177117212 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1315559033&quot; target=&quot;_blank&quot;>1315559033</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>127.24759349540454</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>Cherry Avenue Bikeway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_f2bc0a71a9b145bc2d0fdf48788fe397.setContent(html_af1e03af700dbfe913879229292005a7);
            
        

        poly_line_f2ba5beb897f5a1db159d61e5c769998.bindPopup(popup_f2bc0a71a9b145bc2d0fdf48788fe397)
        ;

        
    
    
            var poly_line_fb509914d7f998f1cba557f73f3acf2d = L.polyline(
                [[41.9076187, -87.6553544], [41.9075576, -87.655352], [41.9073125, -87.655349], [41.9071918, -87.6553423], [41.9071579, -87.6553405]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_68dd8b5fa9fdb147db22a34d28e77a11 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_829812638df52c6788a3a4faa83db43c = $(`<div id=&quot;html_829812638df52c6788a3a4faa83db43c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12177117216 → 734235752 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1315559033&quot; target=&quot;_blank&quot;>1315559033</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>51.25711749802345</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>Cherry Avenue Bikeway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_68dd8b5fa9fdb147db22a34d28e77a11.setContent(html_829812638df52c6788a3a4faa83db43c);
            
        

        poly_line_fb509914d7f998f1cba557f73f3acf2d.bindPopup(popup_68dd8b5fa9fdb147db22a34d28e77a11)
        ;

        
    
    
            var poly_line_70d6b41febee3e0f529b2514466a3945 = L.polyline(
                [[41.9090081, -87.6554876], [41.9087303, -87.6554784]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7a3a65be281cf033febcdbda5b7b2aae = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_18789f91fffcf89a6308896a6b16e41e = $(`<div id=&quot;html_18789f91fffcf89a6308896a6b16e41e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12177117240 → 261282329 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/372671695&quot; target=&quot;_blank&quot;>372671695</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>30.89937467036666</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Cherry Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_7a3a65be281cf033febcdbda5b7b2aae.setContent(html_18789f91fffcf89a6308896a6b16e41e);
            
        

        poly_line_70d6b41febee3e0f529b2514466a3945.bindPopup(popup_7a3a65be281cf033febcdbda5b7b2aae)
        ;

        
    
    
            var poly_line_2e869e8a66db87b826faa4488279a1aa = L.polyline(
                [[41.9106181, -87.6555635], [41.9105527, -87.6556413]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_39a00959eed2a17264ab7d2331325873 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_dc8b2d3aeeea7ec0363cc3c789c67972 = $(`<div id=&quot;html_dc8b2d3aeeea7ec0363cc3c789c67972&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12177117245 → 12177117256 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1315559043&quot; target=&quot;_blank&quot;>1315559043</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>path</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>9.71244320471901</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_39a00959eed2a17264ab7d2331325873.setContent(html_dc8b2d3aeeea7ec0363cc3c789c67972);
            
        

        poly_line_2e869e8a66db87b826faa4488279a1aa.bindPopup(popup_39a00959eed2a17264ab7d2331325873)
        ;

        
    
    
            var poly_line_a4a259f3ccc102b6075a1b46f4fe7c4f = L.polyline(
                [[41.9106181, -87.6555635], [41.9106226, -87.6555794], [41.9106285, -87.6555908], [41.9106413, -87.6555988], [41.9106544, -87.6556013], [41.9106744, -87.6555916], [41.9106904, -87.6555912], [41.9107153, -87.6555982], [41.9107273, -87.6556011]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7a5aa2c1d80ae57c97a96263631ae810 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4f1080dce80214b5073dc4543f4e4427 = $(`<div id=&quot;html_4f1080dce80214b5073dc4543f4e4427&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12177117245 → 9879287200 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/232384399&quot; target=&quot;_blank&quot;>232384399</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>path</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>13.925903671684644</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_7a5aa2c1d80ae57c97a96263631ae810.setContent(html_4f1080dce80214b5073dc4543f4e4427);
            
        

        poly_line_a4a259f3ccc102b6075a1b46f4fe7c4f.bindPopup(popup_7a5aa2c1d80ae57c97a96263631ae810)
        ;

        
    
    
            var poly_line_989b12a372480345e9657ea0aff6c179 = L.polyline(
                [[41.9106181, -87.6555635], [41.9105634, -87.6555607], [41.910546, -87.65553]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_dbe7ef60d31c9e6bac4df21971d73d45 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5e49580450d5d10b8c704233255dcb3b = $(`<div id=&quot;html_5e49580450d5d10b8c704233255dcb3b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12177117245 → 734236051 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/232384399&quot; target=&quot;_blank&quot;>232384399</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>path</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>9.2800889097119</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_dbe7ef60d31c9e6bac4df21971d73d45.setContent(html_5e49580450d5d10b8c704233255dcb3b);
            
        

        poly_line_989b12a372480345e9657ea0aff6c179.bindPopup(popup_dbe7ef60d31c9e6bac4df21971d73d45)
        ;

        
    
    
            var poly_line_40cf646ff015e812d11ba0a3080d40b9 = L.polyline(
                [[41.9105527, -87.6556413], [41.9106181, -87.6555635]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_dec6b4974bb171267e006bf92913400b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6c25fe688bf13840fad93a717cd8028b = $(`<div id=&quot;html_6c25fe688bf13840fad93a717cd8028b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12177117256 → 12177117245 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1315559043&quot; target=&quot;_blank&quot;>1315559043</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>path</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>9.71244320471901</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_dec6b4974bb171267e006bf92913400b.setContent(html_6c25fe688bf13840fad93a717cd8028b);
            
        

        poly_line_40cf646ff015e812d11ba0a3080d40b9.bindPopup(popup_dec6b4974bb171267e006bf92913400b)
        ;

        
    
    
            var poly_line_7f18b4dd7df564bfa28bc4777f85fcc8 = L.polyline(
                [[41.9012123, -87.6521525], [41.9011818, -87.6520949]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b23f1910c47ead70f57ba0e729ca7fb7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b7fa3d2ce733b8b3ebb52b9981d2d260 = $(`<div id=&quot;html_b7fa3d2ce733b8b3ebb52b9981d2d260&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12177117285 → 261135167 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1125567637&quot; target=&quot;_blank&quot;>1125567637</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>5.850403409268549</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_b23f1910c47ead70f57ba0e729ca7fb7.setContent(html_b7fa3d2ce733b8b3ebb52b9981d2d260);
            
        

        poly_line_7f18b4dd7df564bfa28bc4777f85fcc8.bindPopup(popup_b23f1910c47ead70f57ba0e729ca7fb7)
        ;

        
    
    
            var poly_line_c6a9667c8a6c1404d52108c64a11b3ff = L.polyline(
                [[41.9012123, -87.6521525], [41.9012976, -87.6522322], [41.9014093, -87.6523366], [41.9014349, -87.6523605]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f3436208e0ceddebe04d6beeedaada3a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_06ce7f03fca32e1e704516d037bd6a67 = $(`<div id=&quot;html_06ce7f03fca32e1e704516d037bd6a67&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12177117285 → 734235574 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59204025&quot; target=&quot;_blank&quot;>59204025</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>30.149662775678955</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Cherry Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_f3436208e0ceddebe04d6beeedaada3a.setContent(html_06ce7f03fca32e1e704516d037bd6a67);
            
        

        poly_line_c6a9667c8a6c1404d52108c64a11b3ff.bindPopup(popup_f3436208e0ceddebe04d6beeedaada3a)
        ;

        
    
    
            var poly_line_7e063a9838e77e0ed1258b1bdf64cb98 = L.polyline(
                [[41.9012123, -87.6521525], [41.9012409, -87.6523098], [41.9012458, -87.6523368], [41.9012488, -87.6523535], [41.9014988, -87.6537301], [41.9015134, -87.6538104], [41.9015553, -87.6538445], [41.9018088, -87.6540507], [41.9020245, -87.6542288]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e756c943d28312a7804caea2571fad1c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_99eb839aeb6875c15e6d60a1cb33e6eb = $(`<div id=&quot;html_99eb839aeb6875c15e6d60a1cb33e6eb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12177117285 → 12192087402 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/683189248&quot; target=&quot;_blank&quot;>683189248</a>, <a href=&quot;https://www.openstreetmap.org/way/273623183&quot; target=&quot;_blank&quot;>273623183</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>207.7873461589916</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr>             </table>         </div>         </div>`)[0];
                popup_e756c943d28312a7804caea2571fad1c.setContent(html_99eb839aeb6875c15e6d60a1cb33e6eb);
            
        

        poly_line_7e063a9838e77e0ed1258b1bdf64cb98.bindPopup(popup_e756c943d28312a7804caea2571fad1c)
        ;

        
    
    
            var poly_line_73b96b99a0280d363058447eb6fe55ed = L.polyline(
                [[41.9012123, -87.6521525], [41.901115, -87.6521903], [41.9010935, -87.6521987]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b9db797834e7a7fcb9d2b0410ec4d97e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4faff68089e3a7d2197e1ade6141d2c0 = $(`<div id=&quot;html_4faff68089e3a7d2197e1ade6141d2c0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12177117285 → 12192087377 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317315889&quot; target=&quot;_blank&quot;>1317315889</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>13.752220992574687</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_b9db797834e7a7fcb9d2b0410ec4d97e.setContent(html_4faff68089e3a7d2197e1ade6141d2c0);
            
        

        poly_line_73b96b99a0280d363058447eb6fe55ed.bindPopup(popup_b9db797834e7a7fcb9d2b0410ec4d97e)
        ;

        
    
    
            var poly_line_287df60b3eafc139976534208a489984 = L.polyline(
                [[41.9035536, -87.6541123], [41.9035563, -87.6539909], [41.9035727, -87.6528914]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_84c9a8d84ed4418629fe81168a6fbd5d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fcc3552c4d9d418d13ee52ac7304ce95 = $(`<div id=&quot;html_fcc3552c4d9d418d13ee52ac7304ce95&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12177119505 → 12183173799 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24372007&quot; target=&quot;_blank&quot;>24372007</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>101.06342188044785</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_84c9a8d84ed4418629fe81168a6fbd5d.setContent(html_fcc3552c4d9d418d13ee52ac7304ce95);
            
        

        poly_line_287df60b3eafc139976534208a489984.bindPopup(popup_84c9a8d84ed4418629fe81168a6fbd5d)
        ;

        
    
    
            var poly_line_4272683d7559f91cbdc485e9a9bea6d3 = L.polyline(
                [[41.9035536, -87.6541123], [41.9035526, -87.6542361], [41.9035397, -87.6550797]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_373d45c97df2e3c075febfd951bfaa9c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_58ec87080a6abaa5a74be45696b4b221 = $(`<div id=&quot;html_58ec87080a6abaa5a74be45696b4b221&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12177119505 → 5493314487 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/372671688&quot; target=&quot;_blank&quot;>372671688</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>80.0765752268343</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_373d45c97df2e3c075febfd951bfaa9c.setContent(html_58ec87080a6abaa5a74be45696b4b221);
            
        

        poly_line_4272683d7559f91cbdc485e9a9bea6d3.bindPopup(popup_373d45c97df2e3c075febfd951bfaa9c)
        ;

        
    
    
            var poly_line_784ed14e185cf878a0454bd309db5938 = L.polyline(
                [[41.9035536, -87.6541123], [41.9034673, -87.6540425], [41.9034213, -87.6540033], [41.9032575, -87.6538647], [41.9027821, -87.6534672], [41.9022047, -87.6529993]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b04f5f13113809d41eca8e3c7abb0ba9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6413b0e655db4cf41df206e4fce200e0 = $(`<div id=&quot;html_6413b0e655db4cf41df206e4fce200e0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12177119505 → 5493314597 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1341661980&quot; target=&quot;_blank&quot;>1341661980</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>176.02277534385928</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Cherry Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_b04f5f13113809d41eca8e3c7abb0ba9.setContent(html_6413b0e655db4cf41df206e4fce200e0);
            
        

        poly_line_784ed14e185cf878a0454bd309db5938.bindPopup(popup_b04f5f13113809d41eca8e3c7abb0ba9)
        ;

        
    
    
            var poly_line_3b622582f41400a0b8d0672028b6cd8a = L.polyline(
                [[41.9035536, -87.6541123], [41.9036361, -87.6541802], [41.9038313, -87.6543492]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8b6834b061b04a76ad18e97f142a1677 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1b747e4b3f9a83323ccaf744e5a84eee = $(`<div id=&quot;html_1b747e4b3f9a83323ccaf744e5a84eee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12177119505 → 734235544 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59204024&quot; target=&quot;_blank&quot;>59204024</a>, <a href=&quot;https://www.openstreetmap.org/way/1341661980&quot; target=&quot;_blank&quot;>1341661980</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>36.57908135830546</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Cherry Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_8b6834b061b04a76ad18e97f142a1677.setContent(html_1b747e4b3f9a83323ccaf744e5a84eee);
            
        

        poly_line_3b622582f41400a0b8d0672028b6cd8a.bindPopup(popup_8b6834b061b04a76ad18e97f142a1677)
        ;

        
    
    
            var poly_line_b3137caff72cb849de5fd2730165ab6b = L.polyline(
                [[41.9106562, -87.6561392], [41.910614, -87.6561307], [41.910583, -87.6560971], [41.9105441, -87.6559684], [41.9105481, -87.6558061], [41.9105661, -87.655731], [41.91059, -87.6556988], [41.9106309, -87.6556908], [41.9107142, -87.6556952], [41.9107261, -87.6556954], [41.9108041, -87.655697]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d3a6c0566192961ec1b74edeeef1a723 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4f0bf36ae7879dfb523f1e0f26512677 = $(`<div id=&quot;html_4f0bf36ae7879dfb523f1e0f26512677&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12177164056 → 11891975142 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317723639&quot; target=&quot;_blank&quot;>1317723639</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>68.26128340685831</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_d3a6c0566192961ec1b74edeeef1a723.setContent(html_4f0bf36ae7879dfb523f1e0f26512677);
            
        

        poly_line_b3137caff72cb849de5fd2730165ab6b.bindPopup(popup_d3a6c0566192961ec1b74edeeef1a723)
        ;

        
    
    
            var poly_line_225960f3ec45a053247a5cf1ea5b0bf5 = L.polyline(
                [[41.9037987, -87.6486297], [41.9037264, -87.648627], [41.9037072, -87.6486263], [41.9036345, -87.6486236]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e1e3b8813c08ecb65aec74f0f6e21b19 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d13811fd8d3174fc702f02e2aeaa4674 = $(`<div id=&quot;html_d13811fd8d3174fc702f02e2aeaa4674&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12182728199 → 12182728200 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316224921&quot; target=&quot;_blank&quot;>1316224921</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.265210907587736</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_e1e3b8813c08ecb65aec74f0f6e21b19.setContent(html_d13811fd8d3174fc702f02e2aeaa4674);
            
        

        poly_line_225960f3ec45a053247a5cf1ea5b0bf5.bindPopup(popup_e1e3b8813c08ecb65aec74f0f6e21b19)
        ;

        
    
    
            var poly_line_c0695682700f06312e71f6309f0e8da5 = L.polyline(
                [[41.9036345, -87.6486236], [41.9036281, -87.6490223], [41.9036138, -87.6499906], [41.9036041, -87.6507677]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2e164d0c40a8f0093737681179440bc3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_58cb8cbb06f324615b904e2e65d59794 = $(`<div id=&quot;html_58cb8cbb06f324615b904e2e65d59794&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12182728200 → 12183208897 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/372671691&quot; target=&quot;_blank&quot;>372671691</a>, <a href=&quot;https://www.openstreetmap.org/way/24372006&quot; target=&quot;_blank&quot;>24372006</a>, <a href=&quot;https://www.openstreetmap.org/way/24372007&quot; target=&quot;_blank&quot;>24372007</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>bridge</td><td style='padding:2px 6px;'>yes</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>177.47626638414104</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_2e164d0c40a8f0093737681179440bc3.setContent(html_58cb8cbb06f324615b904e2e65d59794);
            
        

        poly_line_c0695682700f06312e71f6309f0e8da5.bindPopup(popup_2e164d0c40a8f0093737681179440bc3)
        ;

        
    
    
            var poly_line_c55d6269636a4336c1eeea74e5c0be5c = L.polyline(
                [[41.9036345, -87.6486236], [41.9036361, -87.6485109], [41.9036404, -87.6481999], [41.9036431, -87.6480864]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_cd493246cc2c9d4ca9eb831983ae6b41 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_bac60901211684b2cb575f0876e5c9c9 = $(`<div id=&quot;html_bac60901211684b2cb575f0876e5c9c9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12182728200 → 102713547 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1376948656&quot; target=&quot;_blank&quot;>1376948656</a>, <a href=&quot;https://www.openstreetmap.org/way/372671691&quot; target=&quot;_blank&quot;>372671691</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>3</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>44.4691060932675</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_cd493246cc2c9d4ca9eb831983ae6b41.setContent(html_bac60901211684b2cb575f0876e5c9c9);
            
        

        poly_line_c55d6269636a4336c1eeea74e5c0be5c.bindPopup(popup_cd493246cc2c9d4ca9eb831983ae6b41)
        ;

        
    
    
            var poly_line_d38acc1fd8fb9504c7e8c8639771d5d4 = L.polyline(
                [[41.9036345, -87.6486236], [41.9037072, -87.6486263], [41.9037264, -87.648627], [41.9037987, -87.6486297]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b995664407df8222e78622b63157e3b3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_729e548a91c1bb0ca896bedc431980cc = $(`<div id=&quot;html_729e548a91c1bb0ca896bedc431980cc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12182728200 → 12182728199 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316224921&quot; target=&quot;_blank&quot;>1316224921</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.265210907587736</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_b995664407df8222e78622b63157e3b3.setContent(html_729e548a91c1bb0ca896bedc431980cc);
            
        

        poly_line_d38acc1fd8fb9504c7e8c8639771d5d4.bindPopup(popup_b995664407df8222e78622b63157e3b3)
        ;

        
    
    
            var poly_line_f9c684677763305e658368b3a52062d9 = L.polyline(
                [[41.9015134, -87.6450026], [41.9015209, -87.6449866], [41.9015569, -87.6449106]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7c77e9ec9d60c0da89ff7c0edb64afbf = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8089bdcc77722a5b68bf7699c4100647 = $(`<div id=&quot;html_8089bdcc77722a5b68bf7699c4100647&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12182779422 → 12182779423 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316224924&quot; target=&quot;_blank&quot;>1316224924</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>9.020586945234367</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_7c77e9ec9d60c0da89ff7c0edb64afbf.setContent(html_8089bdcc77722a5b68bf7699c4100647);
            
        

        poly_line_f9c684677763305e658368b3a52062d9.bindPopup(popup_7c77e9ec9d60c0da89ff7c0edb64afbf)
        ;

        
    
    
            var poly_line_3bdb12225f3b78ed98835036b21b5115 = L.polyline(
                [[41.9015569, -87.6449106], [41.902203, -87.6454173]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2f3374a8dbeb1fb18bbdc3a1d94519bd = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_614d41ef2555f5e958353d627003da5a = $(`<div id=&quot;html_614d41ef2555f5e958353d627003da5a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12182779423 → 344780925 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24080413&quot; target=&quot;_blank&quot;>24080413</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>83.18651447445774</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Crosby Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_2f3374a8dbeb1fb18bbdc3a1d94519bd.setContent(html_614d41ef2555f5e958353d627003da5a);
            
        

        poly_line_3bdb12225f3b78ed98835036b21b5115.bindPopup(popup_2f3374a8dbeb1fb18bbdc3a1d94519bd)
        ;

        
    
    
            var poly_line_bbed80205d0cb0dacd8ea86eeb500479 = L.polyline(
                [[41.9015569, -87.6449106], [41.9014977, -87.6448642], [41.9014855, -87.6448547], [41.9014127, -87.644794]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d9f8ef4b76e71b7d03d8db30d7452697 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8b328393a40ea97059abd34f34d94bbc = $(`<div id=&quot;html_8b328393a40ea97059abd34f34d94bbc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12182779423 → 3408107714 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24080413&quot; target=&quot;_blank&quot;>24080413</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.716056774462857</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Crosby Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_d9f8ef4b76e71b7d03d8db30d7452697.setContent(html_8b328393a40ea97059abd34f34d94bbc);
            
        

        poly_line_bbed80205d0cb0dacd8ea86eeb500479.bindPopup(popup_d9f8ef4b76e71b7d03d8db30d7452697)
        ;

        
    
    
            var poly_line_361f0ed272387d0f260291d00fa4e444 = L.polyline(
                [[41.9015569, -87.6449106], [41.9015209, -87.6449866], [41.9015134, -87.6450026]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b7b52f48d3bb9523e2dfc725383857eb = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_87d89b27cc5241e750427561a7079e5f = $(`<div id=&quot;html_87d89b27cc5241e750427561a7079e5f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12182779423 → 12182779422 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316224924&quot; target=&quot;_blank&quot;>1316224924</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>9.020586945234367</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_b7b52f48d3bb9523e2dfc725383857eb.setContent(html_87d89b27cc5241e750427561a7079e5f);
            
        

        poly_line_361f0ed272387d0f260291d00fa4e444.bindPopup(popup_b7b52f48d3bb9523e2dfc725383857eb)
        ;

        
    
    
            var poly_line_29e59447c2b809933d85078684a0c367 = L.polyline(
                [[41.9016143, -87.6465299], [41.9016538, -87.6464389]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_801038e184c93a38620817bd8bdb6194 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ef3bef0f272d742b7d97ce1ac60d956a = $(`<div id=&quot;html_ef3bef0f272d742b7d97ce1ac60d956a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12182779438 → 12182779439 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316224929&quot; target=&quot;_blank&quot;>1316224929</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>8.718493417164755</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_801038e184c93a38620817bd8bdb6194.setContent(html_ef3bef0f272d742b7d97ce1ac60d956a);
            
        

        poly_line_29e59447c2b809933d85078684a0c367.bindPopup(popup_801038e184c93a38620817bd8bdb6194)
        ;

        
    
    
            var poly_line_60f35c46a777acb815b44c8221f1a625 = L.polyline(
                [[41.9016538, -87.6464389], [41.9009407, -87.6458147]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5dad375e6ece109e34305ba177e23ee7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_920300348187ca4e22b7db172b8ea131 = $(`<div id=&quot;html_920300348187ca4e22b7db172b8ea131&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12182779439 → 261230960 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24371960&quot; target=&quot;_blank&quot;>24371960</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>94.63709768220319</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_5dad375e6ece109e34305ba177e23ee7.setContent(html_920300348187ca4e22b7db172b8ea131);
            
        

        poly_line_60f35c46a777acb815b44c8221f1a625.bindPopup(popup_5dad375e6ece109e34305ba177e23ee7)
        ;

        
    
    
            var poly_line_3974e36040ca6dcf8fb4aedb59b6e7ef = L.polyline(
                [[41.9016538, -87.6464389], [41.9016143, -87.6465299]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_bd97e62c8dc2298efd2fd75059fdc083 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a0cb103b09909ff469617f74c535e768 = $(`<div id=&quot;html_a0cb103b09909ff469617f74c535e768&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12182779439 → 12182779438 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316224929&quot; target=&quot;_blank&quot;>1316224929</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>8.718493417164755</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_bd97e62c8dc2298efd2fd75059fdc083.setContent(html_a0cb103b09909ff469617f74c535e768);
            
        

        poly_line_3974e36040ca6dcf8fb4aedb59b6e7ef.bindPopup(popup_bd97e62c8dc2298efd2fd75059fdc083)
        ;

        
    
    
            var poly_line_464af41ca8b219ec703277bb205d01aa = L.polyline(
                [[41.9016538, -87.6464389], [41.9029878, -87.6475547], [41.9029836, -87.6477538]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a24813826f4942051ebfa004b2b23766 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_19cadaedfd0d591d0bf63760a21416a4 = $(`<div id=&quot;html_19cadaedfd0d591d0bf63760a21416a4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12182779439 → 12182779441 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24371960&quot; target=&quot;_blank&quot;>24371960</a>, <a href=&quot;https://www.openstreetmap.org/way/683189249&quot; target=&quot;_blank&quot;>683189249</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>191.2140483883797</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr>             </table>         </div>         </div>`)[0];
                popup_a24813826f4942051ebfa004b2b23766.setContent(html_19cadaedfd0d591d0bf63760a21416a4);
            
        

        poly_line_464af41ca8b219ec703277bb205d01aa.bindPopup(popup_a24813826f4942051ebfa004b2b23766)
        ;

        
    
    
            var poly_line_aa10b20670339ffb9016459bbede28cb = L.polyline(
                [[41.902761, -87.6475906], [41.9029836, -87.6477538]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_612e0cbf36c59c3fe4d5c478565eb6ce = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1a587babeac266a0dc8e13047d24fd62 = $(`<div id=&quot;html_1a587babeac266a0dc8e13047d24fd62&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12182779440 → 12182779441 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316224930&quot; target=&quot;_blank&quot;>1316224930</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>28.19728269345589</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_612e0cbf36c59c3fe4d5c478565eb6ce.setContent(html_1a587babeac266a0dc8e13047d24fd62);
            
        

        poly_line_aa10b20670339ffb9016459bbede28cb.bindPopup(popup_612e0cbf36c59c3fe4d5c478565eb6ce)
        ;

        
    
    
            var poly_line_3800d7f71c821499056fb929d8170789 = L.polyline(
                [[41.9029836, -87.6477538], [41.902761, -87.6475906]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7dc9d61e0f388880d1a103e0fd0b887f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3fb72c03665f0dab05caaee728ad4f11 = $(`<div id=&quot;html_3fb72c03665f0dab05caaee728ad4f11&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12182779441 → 12182779440 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316224930&quot; target=&quot;_blank&quot;>1316224930</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>28.19728269345589</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_7dc9d61e0f388880d1a103e0fd0b887f.setContent(html_3fb72c03665f0dab05caaee728ad4f11);
            
        

        poly_line_3800d7f71c821499056fb929d8170789.bindPopup(popup_7dc9d61e0f388880d1a103e0fd0b887f)
        ;

        
    
    
            var poly_line_6e2ccb7aa64c1d2a4b7399d8e145dfd0 = L.polyline(
                [[41.9029836, -87.6477538], [41.9029809, -87.6479349], [41.9029797, -87.6480541]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_264becc05e262f79ad1fbad742f20739 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_59726d322f89b9d1c2cc4db8cb0d5a57 = $(`<div id=&quot;html_59726d322f89b9d1c2cc4db8cb0d5a57&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12182779441 → 4269601033 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/683189249&quot; target=&quot;_blank&quot;>683189249</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>24.856713137049162</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_264becc05e262f79ad1fbad742f20739.setContent(html_59726d322f89b9d1c2cc4db8cb0d5a57);
            
        

        poly_line_6e2ccb7aa64c1d2a4b7399d8e145dfd0.bindPopup(popup_264becc05e262f79ad1fbad742f20739)
        ;

        
    
    
            var poly_line_501d493c6ec18bba8e8f73eb2946aab6 = L.polyline(
                [[41.9029836, -87.6477538], [41.9029878, -87.6475547], [41.9016538, -87.6464389]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b9288c47a05ecdc51a25f875e96f1536 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_bb5dcbc51b5351832062b36236190e9b = $(`<div id=&quot;html_bb5dcbc51b5351832062b36236190e9b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12182779441 → 12182779439 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24371960&quot; target=&quot;_blank&quot;>24371960</a>, <a href=&quot;https://www.openstreetmap.org/way/683189249&quot; target=&quot;_blank&quot;>683189249</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>191.2140483883797</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr>             </table>         </div>         </div>`)[0];
                popup_b9288c47a05ecdc51a25f875e96f1536.setContent(html_bb5dcbc51b5351832062b36236190e9b);
            
        

        poly_line_501d493c6ec18bba8e8f73eb2946aab6.bindPopup(popup_b9288c47a05ecdc51a25f875e96f1536)
        ;

        
    
    
            var poly_line_4b11ce874800eae0ac44429c27517379 = L.polyline(
                [[41.9010978, -87.6478446], [41.9010971, -87.6478687], [41.9010944, -87.6479714]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_efdd68c340ae7b63d659cb7dc91e4d09 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_50f6945dff2e7d867bf6797544959734 = $(`<div id=&quot;html_50f6945dff2e7d867bf6797544959734&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12182779451 → 12182779452 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316224938&quot; target=&quot;_blank&quot;>1316224938</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>10.501086602681449</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_efdd68c340ae7b63d659cb7dc91e4d09.setContent(html_50f6945dff2e7d867bf6797544959734);
            
        

        poly_line_4b11ce874800eae0ac44429c27517379.bindPopup(popup_efdd68c340ae7b63d659cb7dc91e4d09)
        ;

        
    
    
            var poly_line_3647baa1c6c6af7dd5c137a3ca3cf4fb = L.polyline(
                [[41.9010944, -87.6479714], [41.9017673, -87.6479932], [41.9022106, -87.6480118], [41.9029447, -87.6480523], [41.9029797, -87.6480541]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8821837e89ee1f9a340f7524a14fbcc8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_904470ffda1f5b4f880b24d7ea427874 = $(`<div id=&quot;html_904470ffda1f5b4f880b24d7ea427874&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12182779452 → 4269601033 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/31798304&quot; target=&quot;_blank&quot;>31798304</a>, <a href=&quot;https://www.openstreetmap.org/way/242897402&quot; target=&quot;_blank&quot;>242897402</a>, <a href=&quot;https://www.openstreetmap.org/way/435397260&quot; target=&quot;_blank&quot;>435397260</a>, <a href=&quot;https://www.openstreetmap.org/way/31798302&quot; target=&quot;_blank&quot;>31798302</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>bridge</td><td style='padding:2px 6px;'>yes</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>209.75350727616853</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Halsted Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_8821837e89ee1f9a340f7524a14fbcc8.setContent(html_904470ffda1f5b4f880b24d7ea427874);
            
        

        poly_line_3647baa1c6c6af7dd5c137a3ca3cf4fb.bindPopup(popup_8821837e89ee1f9a340f7524a14fbcc8)
        ;

        
    
    
            var poly_line_ab9037f05461a9760c46fa2e09b6fd86 = L.polyline(
                [[41.9010944, -87.6479714], [41.900786, -87.6479576], [41.9001474, -87.6479331]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_036c878f49ba9d4d4e32780152d03dcd = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8d2a34e3df729855a3b65a1681086c88 = $(`<div id=&quot;html_8d2a34e3df729855a3b65a1681086c88&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12182779452 → 261916117 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/242897402&quot; target=&quot;_blank&quot;>242897402</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>105.34970338145226</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Halsted Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_036c878f49ba9d4d4e32780152d03dcd.setContent(html_8d2a34e3df729855a3b65a1681086c88);
            
        

        poly_line_ab9037f05461a9760c46fa2e09b6fd86.bindPopup(popup_036c878f49ba9d4d4e32780152d03dcd)
        ;

        
    
    
            var poly_line_6ab124e3fd181f2575a57d34439b214c = L.polyline(
                [[41.9010944, -87.6479714], [41.9010971, -87.6478687], [41.9010978, -87.6478446]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9a9209e696aa53a49e53369fa5aace97 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3ee256b8d45dadb78a3c53fcc799e7c3 = $(`<div id=&quot;html_3ee256b8d45dadb78a3c53fcc799e7c3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12182779452 → 12182779451 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316224938&quot; target=&quot;_blank&quot;>1316224938</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>10.501086602681449</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_9a9209e696aa53a49e53369fa5aace97.setContent(html_3ee256b8d45dadb78a3c53fcc799e7c3);
            
        

        poly_line_6ab124e3fd181f2575a57d34439b214c.bindPopup(popup_9a9209e696aa53a49e53369fa5aace97)
        ;

        
    
    
            var poly_line_2afee4cbd09cf18b5f9fefb4867ccb6e = L.polyline(
                [[41.8999061, -87.64779], [41.8999049, -87.6478122], [41.8999004, -87.6479232]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c1b7f696e1147bbd44b6f9e3f4810b4d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3a1b97e8c751b5676ec2aa8be8bcb0c6 = $(`<div id=&quot;html_3a1b97e8c751b5676ec2aa8be8bcb0c6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12182920935 → 3762220112 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316242983&quot; target=&quot;_blank&quot;>1316242983</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>11.042608621188315</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_c1b7f696e1147bbd44b6f9e3f4810b4d.setContent(html_3a1b97e8c751b5676ec2aa8be8bcb0c6);
            
        

        poly_line_2afee4cbd09cf18b5f9fefb4867ccb6e.bindPopup(popup_c1b7f696e1147bbd44b6f9e3f4810b4d)
        ;

        
    
    
            var poly_line_518a5b05dc55e7c1c3bff6e157cfcbf7 = L.polyline(
                [[41.9002471, -87.6472053], [41.900039, -87.6471897]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a4b3d368070b33cdd0c8b2bdf4fb08ed = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c80bfb7b7a36d81e050da09de7596788 = $(`<div id=&quot;html_c80bfb7b7a36d81e050da09de7596788&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12182928231 → 12182928236 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316243012&quot; target=&quot;_blank&quot;>1316243012</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>23.175688647158943</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_a4b3d368070b33cdd0c8b2bdf4fb08ed.setContent(html_c80bfb7b7a36d81e050da09de7596788);
            
        

        poly_line_518a5b05dc55e7c1c3bff6e157cfcbf7.bindPopup(popup_a4b3d368070b33cdd0c8b2bdf4fb08ed)
        ;

        
    
    
            var poly_line_6b67a6fb18dc85d7a22ea9a41a76e65a = L.polyline(
                [[41.9002439, -87.6473324], [41.9000336, -87.647324]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8069c7dec4eb77880d9dcafea3dd33f5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_04b2f0f24f7bd73d14ba637cbf8677af = $(`<div id=&quot;html_04b2f0f24f7bd73d14ba637cbf8677af&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12182928232 → 12182928235 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316243011&quot; target=&quot;_blank&quot;>1316243011</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>23.394658159525708</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_8069c7dec4eb77880d9dcafea3dd33f5.setContent(html_04b2f0f24f7bd73d14ba637cbf8677af);
            
        

        poly_line_6b67a6fb18dc85d7a22ea9a41a76e65a.bindPopup(popup_8069c7dec4eb77880d9dcafea3dd33f5)
        ;

        
    
    
            var poly_line_1d6c0da460fda0943e58bd428023119b = L.polyline(
                [[41.9000336, -87.647324], [41.900039, -87.6471897]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6a878cb2baeb201701697dfed0d6994f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f3fe4a6ef597cbcaea53fe1e8769f985 = $(`<div id=&quot;html_f3fe4a6ef597cbcaea53fe1e8769f985&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12182928235 → 12182928236 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/756865740&quot; target=&quot;_blank&quot;>756865740</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>11.1313767226373</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_6a878cb2baeb201701697dfed0d6994f.setContent(html_f3fe4a6ef597cbcaea53fe1e8769f985);
            
        

        poly_line_1d6c0da460fda0943e58bd428023119b.bindPopup(popup_6a878cb2baeb201701697dfed0d6994f)
        ;

        
    
    
            var poly_line_330584e75485db775eca5d1f4e30d9b3 = L.polyline(
                [[41.9000336, -87.647324], [41.9002439, -87.6473324]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5f1966d70a2640e860c93de29876bf1c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1b7ba019e5a7819cd7f2b81e64d98712 = $(`<div id=&quot;html_1b7ba019e5a7819cd7f2b81e64d98712&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12182928235 → 12182928232 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316243011&quot; target=&quot;_blank&quot;>1316243011</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>23.394658159525708</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_5f1966d70a2640e860c93de29876bf1c.setContent(html_1b7ba019e5a7819cd7f2b81e64d98712);
            
        

        poly_line_330584e75485db775eca5d1f4e30d9b3.bindPopup(popup_5f1966d70a2640e860c93de29876bf1c)
        ;

        
    
    
            var poly_line_48099374d4280bce8e1aea2fb623b8c4 = L.polyline(
                [[41.9000336, -87.647324], [41.9000297, -87.6474208], [41.9001493, -87.6478268], [41.9001474, -87.6479331]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_20a20ff4a35d83b704b2928f44beb9e0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_889c9c1a4744684a057c3515965ddca6 = $(`<div id=&quot;html_889c9c1a4744684a057c3515965ddca6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12182928235 → 261916117 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/756865740&quot; target=&quot;_blank&quot;>756865740</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>52.96162419345454</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_20a20ff4a35d83b704b2928f44beb9e0.setContent(html_889c9c1a4744684a057c3515965ddca6);
            
        

        poly_line_48099374d4280bce8e1aea2fb623b8c4.bindPopup(popup_20a20ff4a35d83b704b2928f44beb9e0)
        ;

        
    
    
            var poly_line_c0f46038a2494c9c4c3cbf0542f8dd53 = L.polyline(
                [[41.900039, -87.6471897], [41.9000336, -87.647324]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_563cac25a1dda498f54878894cc67c37 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3727292d933dd2a338b8e9f73fcec172 = $(`<div id=&quot;html_3727292d933dd2a338b8e9f73fcec172&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12182928236 → 12182928235 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/756865740&quot; target=&quot;_blank&quot;>756865740</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>11.1313767226373</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_563cac25a1dda498f54878894cc67c37.setContent(html_3727292d933dd2a338b8e9f73fcec172);
            
        

        poly_line_c0f46038a2494c9c4c3cbf0542f8dd53.bindPopup(popup_563cac25a1dda498f54878894cc67c37)
        ;

        
    
    
            var poly_line_dde444bc063e92707ae9e5946eaedfad = L.polyline(
                [[41.900039, -87.6471897], [41.9002471, -87.6472053]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_eb74c8483a7f2825070a1b66eff4398d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3cd25bd0dc7976c5116d4e473d4f54c7 = $(`<div id=&quot;html_3cd25bd0dc7976c5116d4e473d4f54c7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12182928236 → 12182928231 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316243012&quot; target=&quot;_blank&quot;>1316243012</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>23.175688647158943</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_eb74c8483a7f2825070a1b66eff4398d.setContent(html_3cd25bd0dc7976c5116d4e473d4f54c7);
            
        

        poly_line_dde444bc063e92707ae9e5946eaedfad.bindPopup(popup_eb74c8483a7f2825070a1b66eff4398d)
        ;

        
    
    
            var poly_line_cb5a7318c03b600eb771675a7d2eb576 = L.polyline(
                [[41.900039, -87.6471897], [41.9000542, -87.646811], [41.9001543, -87.6466966], [41.9003518, -87.6468023], [41.9005751, -87.6470398], [41.9007236, -87.6470488], [41.9008321, -87.6472072], [41.9008198, -87.6477391]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9670925fcef9f50754e4fdda4dcbffe7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5d6b0ced5c0c1f457eb70312a6c41261 = $(`<div id=&quot;html_5d6b0ced5c0c1f457eb70312a6c41261&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12182928236 → 12182928280 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/756865740&quot; target=&quot;_blank&quot;>756865740</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>179.69703081142467</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_9670925fcef9f50754e4fdda4dcbffe7.setContent(html_5d6b0ced5c0c1f457eb70312a6c41261);
            
        

        poly_line_cb5a7318c03b600eb771675a7d2eb576.bindPopup(popup_9670925fcef9f50754e4fdda4dcbffe7)
        ;

        
    
    
            var poly_line_b042c3ed61b5613137169eb39e43e852 = L.polyline(
                [[41.9008198, -87.6477391], [41.9008321, -87.6472072], [41.9007236, -87.6470488], [41.9005751, -87.6470398], [41.9003518, -87.6468023], [41.9001543, -87.6466966], [41.9000542, -87.646811], [41.900039, -87.6471897]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_80aeb4ab964e98759dd2ec7b7bd9a514 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e01dff306872af2bf8f2b2c06f154935 = $(`<div id=&quot;html_e01dff306872af2bf8f2b2c06f154935&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12182928280 → 12182928236 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/756865740&quot; target=&quot;_blank&quot;>756865740</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>179.69703081142467</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_80aeb4ab964e98759dd2ec7b7bd9a514.setContent(html_e01dff306872af2bf8f2b2c06f154935);
            
        

        poly_line_b042c3ed61b5613137169eb39e43e852.bindPopup(popup_80aeb4ab964e98759dd2ec7b7bd9a514)
        ;

        
    
    
            var poly_line_41d82829f3250eb3dd4a99fc0478c7a5 = L.polyline(
                [[41.9030531, -87.65287], [41.9034877, -87.6528879], [41.9035045, -87.6528886], [41.9035727, -87.6528914]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_93c74efae6922682d092e89120819bec = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2fe7001dc04dd9c48f2d177e378be0d9 = $(`<div id=&quot;html_2fe7001dc04dd9c48f2d177e378be0d9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12183173798 → 12183173799 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316281930&quot; target=&quot;_blank&quot;>1316281930</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>57.804103571722855</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_93c74efae6922682d092e89120819bec.setContent(html_2fe7001dc04dd9c48f2d177e378be0d9);
            
        

        poly_line_41d82829f3250eb3dd4a99fc0478c7a5.bindPopup(popup_93c74efae6922682d092e89120819bec)
        ;

        
    
    
            var poly_line_55cacbc6edfa63e6b91c2a3e576cc6be = L.polyline(
                [[41.9035727, -87.6528914], [41.9035563, -87.6539909], [41.9035536, -87.6541123]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7bcb3e680dfefe8193f27ad707a1210f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b1821731cdf7eb2c8cb13cb5e74645aa = $(`<div id=&quot;html_b1821731cdf7eb2c8cb13cb5e74645aa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12183173799 → 12177119505 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24372007&quot; target=&quot;_blank&quot;>24372007</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>101.06342188044785</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_7bcb3e680dfefe8193f27ad707a1210f.setContent(html_b1821731cdf7eb2c8cb13cb5e74645aa);
            
        

        poly_line_55cacbc6edfa63e6b91c2a3e576cc6be.bindPopup(popup_7bcb3e680dfefe8193f27ad707a1210f)
        ;

        
    
    
            var poly_line_7983f14a675374637fb541ec3cbbbb11 = L.polyline(
                [[41.9035727, -87.6528914], [41.903576, -87.6526706], [41.9035777, -87.6525516]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6209a2dd1fedd9eeac54564d630b95ef = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b174b36e215504c4ba554866f77f6b9c = $(`<div id=&quot;html_b174b36e215504c4ba554866f77f6b9c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12183173799 → 102713545 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24372007&quot; target=&quot;_blank&quot;>24372007</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>28.127057348886712</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_6209a2dd1fedd9eeac54564d630b95ef.setContent(html_b174b36e215504c4ba554866f77f6b9c);
            
        

        poly_line_7983f14a675374637fb541ec3cbbbb11.bindPopup(popup_6209a2dd1fedd9eeac54564d630b95ef)
        ;

        
    
    
            var poly_line_954c092982318728f402d029294aae2a = L.polyline(
                [[41.9035727, -87.6528914], [41.9035045, -87.6528886], [41.9034877, -87.6528879], [41.9030531, -87.65287]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ca5c78cf33d4e16deba538a3c5d4107e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9c9336aaaecf1e3691438c462f41469d = $(`<div id=&quot;html_9c9336aaaecf1e3691438c462f41469d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12183173799 → 12183173798 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316281930&quot; target=&quot;_blank&quot;>1316281930</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>57.80410357172286</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>alley</td></tr>             </table>         </div>         </div>`)[0];
                popup_ca5c78cf33d4e16deba538a3c5d4107e.setContent(html_9c9336aaaecf1e3691438c462f41469d);
            
        

        poly_line_954c092982318728f402d029294aae2a.bindPopup(popup_ca5c78cf33d4e16deba538a3c5d4107e)
        ;

        
    
    
            var poly_line_6668b5d4d6351c812fea17bce72f20d8 = L.polyline(
                [[41.9052265, -87.6516488], [41.9054064, -87.6517218]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c4ba40fc4dca0b26d7bc91ddbb8804d0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_11ce36f7a15600c6131c985c8e85f05b = $(`<div id=&quot;html_11ce36f7a15600c6131c985c8e85f05b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12183208896 → 12183227513 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316289231&quot; target=&quot;_blank&quot;>1316289231</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.896329324407432</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_c4ba40fc4dca0b26d7bc91ddbb8804d0.setContent(html_11ce36f7a15600c6131c985c8e85f05b);
            
        

        poly_line_6668b5d4d6351c812fea17bce72f20d8.bindPopup(popup_c4ba40fc4dca0b26d7bc91ddbb8804d0)
        ;

        
    
    
            var poly_line_dea0b45b9e7e2ee1e8d380da792bf5fc = L.polyline(
                [[41.9052265, -87.6516488], [41.9053214, -87.6517834], [41.9060906, -87.6524425]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_802512e2933be9139cd55c9b37257d81 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9e66bf3d5a5ebd573589ab5606be5632 = $(`<div id=&quot;html_9e66bf3d5a5ebd573589ab5606be5632&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12183208896 → 12183227518 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24077505&quot; target=&quot;_blank&quot;>24077505</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>access</td><td style='padding:2px 6px;'>destination</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>116.78702241191492</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_802512e2933be9139cd55c9b37257d81.setContent(html_9e66bf3d5a5ebd573589ab5606be5632);
            
        

        poly_line_dea0b45b9e7e2ee1e8d380da792bf5fc.bindPopup(popup_802512e2933be9139cd55c9b37257d81)
        ;

        
    
    
            var poly_line_0e425c638a8a1a7117bb2d7f8b83c92e = L.polyline(
                [[41.9052265, -87.6516488], [41.9038821, -87.6505182], [41.9037722, -87.6507736], [41.9036896, -87.6507727], [41.9036041, -87.6507677]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6a0747e469d9727744f135e49f83206f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_32887fa3089201987f2d0339f184becc = $(`<div id=&quot;html_32887fa3089201987f2d0339f184becc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12183208896 → 12183208897 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316289232&quot; target=&quot;_blank&quot;>1316289232</a>, <a href=&quot;https://www.openstreetmap.org/way/24077505&quot; target=&quot;_blank&quot;>24077505</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>access</td><td style='padding:2px 6px;'>destination</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>219.47399165326118</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_6a0747e469d9727744f135e49f83206f.setContent(html_32887fa3089201987f2d0339f184becc);
            
        

        poly_line_0e425c638a8a1a7117bb2d7f8b83c92e.bindPopup(popup_6a0747e469d9727744f135e49f83206f)
        ;

        
    
    
            var poly_line_b83cdbf6fc36863e18ff7600dfe6a474 = L.polyline(
                [[41.9036041, -87.6507677], [41.9036032, -87.6508363], [41.9036014, -87.6509581]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4a90bd0017e2bb5c1586ad6be603abb4 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_395f086af39539e0b4657bfc05c21b07 = $(`<div id=&quot;html_395f086af39539e0b4657bfc05c21b07&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12183208897 → 264432667 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24372007&quot; target=&quot;_blank&quot;>24372007</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>15.760204391784297</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_4a90bd0017e2bb5c1586ad6be603abb4.setContent(html_395f086af39539e0b4657bfc05c21b07);
            
        

        poly_line_b83cdbf6fc36863e18ff7600dfe6a474.bindPopup(popup_4a90bd0017e2bb5c1586ad6be603abb4)
        ;

        
    
    
            var poly_line_953180666d35c2712438c4f6b7512fd9 = L.polyline(
                [[41.9036041, -87.6507677], [41.9036138, -87.6499906], [41.9036281, -87.6490223], [41.9036345, -87.6486236]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_03975c0879f51534c944700dbf1d5223 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ee0364634e152f19af28460937949aa1 = $(`<div id=&quot;html_ee0364634e152f19af28460937949aa1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12183208897 → 12182728200 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/372671691&quot; target=&quot;_blank&quot;>372671691</a>, <a href=&quot;https://www.openstreetmap.org/way/24372006&quot; target=&quot;_blank&quot;>24372006</a>, <a href=&quot;https://www.openstreetmap.org/way/24372007&quot; target=&quot;_blank&quot;>24372007</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>bridge</td><td style='padding:2px 6px;'>yes</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>177.47626638414107</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_03975c0879f51534c944700dbf1d5223.setContent(html_ee0364634e152f19af28460937949aa1);
            
        

        poly_line_953180666d35c2712438c4f6b7512fd9.bindPopup(popup_03975c0879f51534c944700dbf1d5223)
        ;

        
    
    
            var poly_line_199b992ee6b44761398c42a33c2a6e96 = L.polyline(
                [[41.9036041, -87.6507677], [41.9036896, -87.6507727], [41.9037722, -87.6507736], [41.9038821, -87.6505182], [41.9052265, -87.6516488]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d90e3c494e4b09a5f507b823ec468246 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_32a64cabf4aeae319f25592974692731 = $(`<div id=&quot;html_32a64cabf4aeae319f25592974692731&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12183208897 → 12183208896 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316289232&quot; target=&quot;_blank&quot;>1316289232</a>, <a href=&quot;https://www.openstreetmap.org/way/24077505&quot; target=&quot;_blank&quot;>24077505</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>access</td><td style='padding:2px 6px;'>destination</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>219.47399165326115</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_d90e3c494e4b09a5f507b823ec468246.setContent(html_32a64cabf4aeae319f25592974692731);
            
        

        poly_line_199b992ee6b44761398c42a33c2a6e96.bindPopup(popup_d90e3c494e4b09a5f507b823ec468246)
        ;

        
    
    
            var poly_line_ae4d2ac9eafd9bd1291ca0e22c06248a = L.polyline(
                [[41.9054064, -87.6517218], [41.9052265, -87.6516488]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c25105f45cbe047816c45253f7b7debd = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4eb3e254facc568a0823222a0522c77c = $(`<div id=&quot;html_4eb3e254facc568a0823222a0522c77c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12183227513 → 12183208896 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316289231&quot; target=&quot;_blank&quot;>1316289231</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.896329324407432</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_c25105f45cbe047816c45253f7b7debd.setContent(html_4eb3e254facc568a0823222a0522c77c);
            
        

        poly_line_ae4d2ac9eafd9bd1291ca0e22c06248a.bindPopup(popup_c25105f45cbe047816c45253f7b7debd)
        ;

        
    
    
            var poly_line_6c1fcd1a72473169b6091ed4263098d5 = L.polyline(
                [[41.9054064, -87.6517218], [41.9055062, -87.6517365], [41.905617, -87.651817], [41.9057787, -87.6519431], [41.9059634, -87.6521134], [41.9060332, -87.6522381]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4873fadb1b91ed2d7c4fd32cdbbadaa8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fdfacf0ba615e09124595461c2aad9f1 = $(`<div id=&quot;html_fdfacf0ba615e09124595461c2aad9f1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12183227513 → 12183227516 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316289227&quot; target=&quot;_blank&quot;>1316289227</a>, <a href=&quot;https://www.openstreetmap.org/way/1316289228&quot; target=&quot;_blank&quot;>1316289228</a>, <a href=&quot;https://www.openstreetmap.org/way/1316289229&quot; target=&quot;_blank&quot;>1316289229</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>83.78000968704892</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_4873fadb1b91ed2d7c4fd32cdbbadaa8.setContent(html_fdfacf0ba615e09124595461c2aad9f1);
            
        

        poly_line_6c1fcd1a72473169b6091ed4263098d5.bindPopup(popup_4873fadb1b91ed2d7c4fd32cdbbadaa8)
        ;

        
    
    
            var poly_line_ed39c56a6ae0dae74fa37ff67dec520e = L.polyline(
                [[41.9060332, -87.6522381], [41.9060906, -87.6524425]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2f78d80ad88cf3ee93fc11d90c139f5b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3c9b9890ff4be7afa35bed534808c4da = $(`<div id=&quot;html_3c9b9890ff4be7afa35bed534808c4da&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12183227516 → 12183227518 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316289230&quot; target=&quot;_blank&quot;>1316289230</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.079417053019437</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_2f78d80ad88cf3ee93fc11d90c139f5b.setContent(html_3c9b9890ff4be7afa35bed534808c4da);
            
        

        poly_line_ed39c56a6ae0dae74fa37ff67dec520e.bindPopup(popup_2f78d80ad88cf3ee93fc11d90c139f5b)
        ;

        
    
    
            var poly_line_f7b953c74b76b512abf1c8f274fa1083 = L.polyline(
                [[41.9060332, -87.6522381], [41.9059294, -87.6522046], [41.9058446, -87.6521335], [41.9056799, -87.6520061], [41.9054813, -87.6518398], [41.9054064, -87.6517218]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_19ed068d3e8643918b3b2c05418ba7a9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ecc3d9fae4672747a5cc5ec3a4f199c8 = $(`<div id=&quot;html_ecc3d9fae4672747a5cc5ec3a4f199c8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12183227516 → 12183227513 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316289226&quot; target=&quot;_blank&quot;>1316289226</a>, <a href=&quot;https://www.openstreetmap.org/way/1316289228&quot; target=&quot;_blank&quot;>1316289228</a>, <a href=&quot;https://www.openstreetmap.org/way/1316289229&quot; target=&quot;_blank&quot;>1316289229</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>82.97198003614407</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_19ed068d3e8643918b3b2c05418ba7a9.setContent(html_ecc3d9fae4672747a5cc5ec3a4f199c8);
            
        

        poly_line_f7b953c74b76b512abf1c8f274fa1083.bindPopup(popup_19ed068d3e8643918b3b2c05418ba7a9)
        ;

        
    
    
            var poly_line_7ab406411d41c0681076693c24e896e8 = L.polyline(
                [[41.9060906, -87.6524425], [41.9060332, -87.6522381]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f9e534b0affb6f1db7f7903c58ebe96b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_515d3e68e647ae5da3e349c4d0833ba2 = $(`<div id=&quot;html_515d3e68e647ae5da3e349c4d0833ba2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12183227518 → 12183227516 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316289230&quot; target=&quot;_blank&quot;>1316289230</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>18.079417053019437</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_f9e534b0affb6f1db7f7903c58ebe96b.setContent(html_515d3e68e647ae5da3e349c4d0833ba2);
            
        

        poly_line_7ab406411d41c0681076693c24e896e8.bindPopup(popup_f9e534b0affb6f1db7f7903c58ebe96b)
        ;

        
    
    
            var poly_line_77090a261b6cbc38866bc83ab9c179fd = L.polyline(
                [[41.9060906, -87.6524425], [41.9064962, -87.6527899], [41.9071896, -87.6533631], [41.9076786, -87.6537673], [41.9077577, -87.6537928], [41.9083336, -87.6542696], [41.9084876, -87.6543971], [41.9086143, -87.6543908]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e9e53e80b82a4543cb2107b922f3ad07 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e19fe8cd02ae550dd7410dbc6278060a = $(`<div id=&quot;html_e19fe8cd02ae550dd7410dbc6278060a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12183227518 → 5493314392 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24077505&quot; target=&quot;_blank&quot;>24077505</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>access</td><td style='padding:2px 6px;'>destination</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>326.32322496537796</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_e9e53e80b82a4543cb2107b922f3ad07.setContent(html_e19fe8cd02ae550dd7410dbc6278060a);
            
        

        poly_line_77090a261b6cbc38866bc83ab9c179fd.bindPopup(popup_e9e53e80b82a4543cb2107b922f3ad07)
        ;

        
    
    
            var poly_line_44fd5874c8fdef383c6c5f6f5933486c = L.polyline(
                [[41.9060906, -87.6524425], [41.9053214, -87.6517834], [41.9052265, -87.6516488]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_540613a6e25e639053913b299da32e18 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6312795491c13017c5d73b952054a264 = $(`<div id=&quot;html_6312795491c13017c5d73b952054a264&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12183227518 → 12183208896 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24077505&quot; target=&quot;_blank&quot;>24077505</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>access</td><td style='padding:2px 6px;'>destination</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>116.78702241191492</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_540613a6e25e639053913b299da32e18.setContent(html_6312795491c13017c5d73b952054a264);
            
        

        poly_line_44fd5874c8fdef383c6c5f6f5933486c.bindPopup(popup_540613a6e25e639053913b299da32e18)
        ;

        
    
    
            var poly_line_6aace6e33cade6beedebefeb57d0e911 = L.polyline(
                [[41.9074168, -87.6566879], [41.9073647, -87.6566868]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7b112f9f73ebfa36c92e2915f9ae75ca = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c6c9b0f953ad97a54372eaf547daad12 = $(`<div id=&quot;html_c6c9b0f953ad97a54372eaf547daad12&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12183227666 → 12183227668 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/47089671&quot; target=&quot;_blank&quot;>47089671</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>5.793978992673718</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_7b112f9f73ebfa36c92e2915f9ae75ca.setContent(html_c6c9b0f953ad97a54372eaf547daad12);
            
        

        poly_line_6aace6e33cade6beedebefeb57d0e911.bindPopup(popup_7b112f9f73ebfa36c92e2915f9ae75ca)
        ;

        
    
    
            var poly_line_764f90c41e1c278ca2ee83e274c71ae8 = L.polyline(
                [[41.9073647, -87.6566868], [41.9073661, -87.6565503]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3d6a94d64e10f0e198a15b4c87c85c7b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9993a926d0c9158f20dbcccce3702a1b = $(`<div id=&quot;html_9993a926d0c9158f20dbcccce3702a1b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12183227668 → 12183227669 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316289244&quot; target=&quot;_blank&quot;>1316289244</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>11.297026111628496</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_3d6a94d64e10f0e198a15b4c87c85c7b.setContent(html_9993a926d0c9158f20dbcccce3702a1b);
            
        

        poly_line_764f90c41e1c278ca2ee83e274c71ae8.bindPopup(popup_3d6a94d64e10f0e198a15b4c87c85c7b)
        ;

        
    
    
            var poly_line_91e67a1f93ad896e6f8d61146cdfa1a6 = L.polyline(
                [[41.9073647, -87.6566868], [41.9072894, -87.6566841], [41.9072331, -87.6566839], [41.9071416, -87.6566755]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_78a61ac0d8c19761639f8353bf6aacd5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_250a550e5da4d7b696b4130ad0870bfd = $(`<div id=&quot;html_250a550e5da4d7b696b4130ad0870bfd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12183227668 → 600507960 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/47089671&quot; target=&quot;_blank&quot;>47089671</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>24.83434490976523</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_78a61ac0d8c19761639f8353bf6aacd5.setContent(html_250a550e5da4d7b696b4130ad0870bfd);
            
        

        poly_line_91e67a1f93ad896e6f8d61146cdfa1a6.bindPopup(popup_78a61ac0d8c19761639f8353bf6aacd5)
        ;

        
    
    
            var poly_line_e9a0e1590c54b5dbb492a307b74cf305 = L.polyline(
                [[41.9073661, -87.6565503], [41.9074662, -87.6565533]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_81b36dc9249863a664a164f26e6a433b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e28d7edfbd8d280f2c25c81b2767b40f = $(`<div id=&quot;html_e28d7edfbd8d280f2c25c81b2767b40f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12183227669 → 12183227667 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/221316607&quot; target=&quot;_blank&quot;>221316607</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>11.133396216341302</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_81b36dc9249863a664a164f26e6a433b.setContent(html_e28d7edfbd8d280f2c25c81b2767b40f);
            
        

        poly_line_e9a0e1590c54b5dbb492a307b74cf305.bindPopup(popup_81b36dc9249863a664a164f26e6a433b)
        ;

        
    
    
            var poly_line_a89a0ba5cf2d5aeec9b8a3555c541676 = L.polyline(
                [[41.9073661, -87.6565503], [41.9073647, -87.6566868]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b9ce05b308b6e9c4b878b88136b4c9fe = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c507e62da67191fab7c6f9941855a705 = $(`<div id=&quot;html_c507e62da67191fab7c6f9941855a705&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12183227669 → 12183227668 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316289244&quot; target=&quot;_blank&quot;>1316289244</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>11.297026111628496</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_b9ce05b308b6e9c4b878b88136b4c9fe.setContent(html_c507e62da67191fab7c6f9941855a705);
            
        

        poly_line_a89a0ba5cf2d5aeec9b8a3555c541676.bindPopup(popup_b9ce05b308b6e9c4b878b88136b4c9fe)
        ;

        
    
    
            var poly_line_9cff629096f76a95042259d5d422750a = L.polyline(
                [[41.9031234, -87.6485263], [41.9031247, -87.6483527]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_69875036cb758cbbe6ee65f8971f63de = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8139efbdc04ab71b11f16f5c9b55a3db = $(`<div id=&quot;html_8139efbdc04ab71b11f16f5c9b55a3db&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12183238005 → 12193659506 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316290209&quot; target=&quot;_blank&quot;>1316290209</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>14.367817285008618</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_69875036cb758cbbe6ee65f8971f63de.setContent(html_8139efbdc04ab71b11f16f5c9b55a3db);
            
        

        poly_line_9cff629096f76a95042259d5d422750a.bindPopup(popup_69875036cb758cbbe6ee65f8971f63de)
        ;

        
    
    
            var poly_line_e94b79989c451c8fe578cbc3cf2c854c = L.polyline(
                [[41.9031234, -87.6485263], [41.9029284, -87.6483796], [41.9031247, -87.6483527]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_201125fadb8528dc0e95b0a1e923d378 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1cfed0f933e37255a495f0d40317ef1b = $(`<div id=&quot;html_1cfed0f933e37255a495f0d40317ef1b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12183238005 → 12193659506 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316290209&quot; target=&quot;_blank&quot;>1316290209</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>46.7914855181309</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_201125fadb8528dc0e95b0a1e923d378.setContent(html_1cfed0f933e37255a495f0d40317ef1b);
            
        

        poly_line_e94b79989c451c8fe578cbc3cf2c854c.bindPopup(popup_201125fadb8528dc0e95b0a1e923d378)
        ;

        
    
    
            var poly_line_810ad95b59283c43a39d78df7074f5ba = L.polyline(
                [[41.9031234, -87.6485263], [41.9031435, -87.6485733], [41.9031462, -87.6485821], [41.9031863, -87.6486777], [41.9032284, -87.6487222]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a1860227847df872b8fce919b7d85be4 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_aaa855758c7dda89359e3434a74b5450 = $(`<div id=&quot;html_aaa855758c7dda89359e3434a74b5450&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12183238005 → 9432544739 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1022752435&quot; target=&quot;_blank&quot;>1022752435</a>, <a href=&quot;https://www.openstreetmap.org/way/1022752436&quot; target=&quot;_blank&quot;>1022752436</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.31195852314039</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_a1860227847df872b8fce919b7d85be4.setContent(html_aaa855758c7dda89359e3434a74b5450);
            
        

        poly_line_810ad95b59283c43a39d78df7074f5ba.bindPopup(popup_a1860227847df872b8fce919b7d85be4)
        ;

        
    
    
            var poly_line_e6fd97a17b56954bc78703217f4890f2 = L.polyline(
                [[41.9074227, -87.6518108], [41.9072807, -87.6521156]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#469990&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#469990&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a2484308f664145878c5ea1e1c369909 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e74cacf923e29e433675d52db6570d6d = $(`<div id=&quot;html_e74cacf923e29e433675d52db6570d6d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12184602884 → 12184602885 (key 0)<br>                 <b>Component</b> 9<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316473816&quot; target=&quot;_blank&quot;>1316473816</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>29.758015606299598</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_a2484308f664145878c5ea1e1c369909.setContent(html_e74cacf923e29e433675d52db6570d6d);
            
        

        poly_line_e6fd97a17b56954bc78703217f4890f2.bindPopup(popup_a2484308f664145878c5ea1e1c369909)
        ;

        
    
    
            var poly_line_4322b30eaae0a660ddc4addff0b19e90 = L.polyline(
                [[41.9072807, -87.6521156], [41.9074227, -87.6518108]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#469990&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#469990&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_48963eec49182cee2cab3d950a6eca30 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a954882e85da32a2d6f917244618c4fc = $(`<div id=&quot;html_a954882e85da32a2d6f917244618c4fc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12184602885 → 12184602884 (key 0)<br>                 <b>Component</b> 9<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316473816&quot; target=&quot;_blank&quot;>1316473816</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>29.758015606299598</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_48963eec49182cee2cab3d950a6eca30.setContent(html_a954882e85da32a2d6f917244618c4fc);
            
        

        poly_line_4322b30eaae0a660ddc4addff0b19e90.bindPopup(popup_48963eec49182cee2cab3d950a6eca30)
        ;

        
    
    
            var poly_line_873b1905a0b2285e9a11d01a0982042b = L.polyline(
                [[41.9094694, -87.6538614], [41.9094914, -87.6538145]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e97a8266e238cb862596d48dc42f8ea9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f8742f3192507e7f66a0831cb8c2494c = $(`<div id=&quot;html_f8742f3192507e7f66a0831cb8c2494c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12184982675 → 2168537848 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/864831414&quot; target=&quot;_blank&quot;>864831414</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>4.587685191753195</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Weed Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_e97a8266e238cb862596d48dc42f8ea9.setContent(html_f8742f3192507e7f66a0831cb8c2494c);
            
        

        poly_line_873b1905a0b2285e9a11d01a0982042b.bindPopup(popup_e97a8266e238cb862596d48dc42f8ea9)
        ;

        
    
    
            var poly_line_19507a18bc7bfc9ce086b6cd764bb973 = L.polyline(
                [[41.907891, -87.6524673], [41.9077978, -87.6524499]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f92715343991e05a47f86be60ec72c84 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f65890e7475dbee3b50b87e1adc58657 = $(`<div id=&quot;html_f65890e7475dbee3b50b87e1adc58657&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12185013447 → 11653264172 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1253661354&quot; target=&quot;_blank&quot;>1253661354</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>10.462936091716857</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_f92715343991e05a47f86be60ec72c84.setContent(html_f65890e7475dbee3b50b87e1adc58657);
            
        

        poly_line_19507a18bc7bfc9ce086b6cd764bb973.bindPopup(popup_f92715343991e05a47f86be60ec72c84)
        ;

        
    
    
            var poly_line_3ba5551a7db8f79a6e7a24700a916bdd = L.polyline(
                [[41.907891, -87.6524673], [41.9078544, -87.6525476]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_47cde3176f0a352c1cf8551a184f0ddf = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9938b050fcf8581fd4d1a197c041d681 = $(`<div id=&quot;html_9938b050fcf8581fd4d1a197c041d681&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12185013447 → 261193490 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1413118080&quot; target=&quot;_blank&quot;>1413118080</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.792323422692829</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Blackhawk Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_47cde3176f0a352c1cf8551a184f0ddf.setContent(html_9938b050fcf8581fd4d1a197c041d681);
            
        

        poly_line_3ba5551a7db8f79a6e7a24700a916bdd.bindPopup(popup_47cde3176f0a352c1cf8551a184f0ddf)
        ;

        
    
    
            var poly_line_387bf19715539ba1b4d0fed6348d14b8 = L.polyline(
                [[41.907891, -87.6524673], [41.9081058, -87.6519964], [41.9081302, -87.651943], [41.9081676, -87.6518609]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f48d9981c0723920eaad3d47a2daf92d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3bef1290b477ea279dd7f70bb767a835 = $(`<div id=&quot;html_3bef1290b477ea279dd7f70bb767a835&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12185013447 → 734236939 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1413118080&quot; target=&quot;_blank&quot;>1413118080</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>58.85715019131396</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Blackhawk Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_f48d9981c0723920eaad3d47a2daf92d.setContent(html_3bef1290b477ea279dd7f70bb767a835);
            
        

        poly_line_387bf19715539ba1b4d0fed6348d14b8.bindPopup(popup_f48d9981c0723920eaad3d47a2daf92d)
        ;

        
    
    
            var poly_line_f562fe564701965239a25e605b70d209 = L.polyline(
                [[41.908362, -87.6521766], [41.9083747, -87.6521482], [41.9084119, -87.6520652]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_650beb09cc344c59fc7b642ca856bf65 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d89e764fc0a05276f3e64c14c2332e2d = $(`<div id=&quot;html_d89e764fc0a05276f3e64c14c2332e2d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12185013486 → 12185013487 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316526733&quot; target=&quot;_blank&quot;>1316526733</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>10.759708627632348</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_650beb09cc344c59fc7b642ca856bf65.setContent(html_d89e764fc0a05276f3e64c14c2332e2d);
            
        

        poly_line_f562fe564701965239a25e605b70d209.bindPopup(popup_650beb09cc344c59fc7b642ca856bf65)
        ;

        
    
    
            var poly_line_6b3c34e6babbb168d2155aa349f04bd6 = L.polyline(
                [[41.9084119, -87.6520652], [41.9090808, -87.6526246]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5aa6cda43b5de18ebbc2ab3a1ca1f934 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_bb9034032c7e2f446d139d7933957459 = $(`<div id=&quot;html_bb9034032c7e2f446d139d7933957459&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12185013487 → 5493322769 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273622070&quot; target=&quot;_blank&quot;>273622070</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>87.60746770789935</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_5aa6cda43b5de18ebbc2ab3a1ca1f934.setContent(html_bb9034032c7e2f446d139d7933957459);
            
        

        poly_line_6b3c34e6babbb168d2155aa349f04bd6.bindPopup(popup_5aa6cda43b5de18ebbc2ab3a1ca1f934)
        ;

        
    
    
            var poly_line_ac629931d3137f79c91fd5d9ff68195b = L.polyline(
                [[41.9084119, -87.6520652], [41.9082668, -87.6519439], [41.9082443, -87.6519251], [41.9081676, -87.6518609]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b3464524e89a103fe454509802916ea2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_369520ae27f6f0cbb4f947e9159d254d = $(`<div id=&quot;html_369520ae27f6f0cbb4f947e9159d254d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12185013487 → 734236939 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273622070&quot; target=&quot;_blank&quot;>273622070</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>tertiary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>2</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>31.99629656927143</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Kingsbury Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_b3464524e89a103fe454509802916ea2.setContent(html_369520ae27f6f0cbb4f947e9159d254d);
            
        

        poly_line_ac629931d3137f79c91fd5d9ff68195b.bindPopup(popup_b3464524e89a103fe454509802916ea2)
        ;

        
    
    
            var poly_line_cebdf020016d5328ee11765aeb3936e5 = L.polyline(
                [[41.9084119, -87.6520652], [41.9083747, -87.6521482], [41.908362, -87.6521766]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c9eeeb6fe16290c5619cf2b2de578c71 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8669c1e7529604f7340088eb8cdaec39 = $(`<div id=&quot;html_8669c1e7529604f7340088eb8cdaec39&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12185013487 → 12185013486 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316526733&quot; target=&quot;_blank&quot;>1316526733</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>10.759708627632348</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_c9eeeb6fe16290c5619cf2b2de578c71.setContent(html_8669c1e7529604f7340088eb8cdaec39);
            
        

        poly_line_cebdf020016d5328ee11765aeb3936e5.bindPopup(popup_c9eeeb6fe16290c5619cf2b2de578c71)
        ;

        
    
    
            var poly_line_908c90c425616e57cbd921d4da9e239b = L.polyline(
                [[41.9104964, -87.6547169], [41.9104421, -87.6545891], [41.9104067, -87.6545574], [41.910336, -87.6544954]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d27a1a2388a8bba5b95e68ef18ed6c4c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1674ad6c9edc7964c034916fb74120c0 = $(`<div id=&quot;html_1674ad6c9edc7964c034916fb74120c0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12185013535 → 2168537864 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316526742&quot; target=&quot;_blank&quot;>1316526742</a>, <a href=&quot;https://www.openstreetmap.org/way/1316526743&quot; target=&quot;_blank&quot;>1316526743</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>26.29551372205472</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>['driveway', 'parking_aisle']</td></tr>             </table>         </div>         </div>`)[0];
                popup_d27a1a2388a8bba5b95e68ef18ed6c4c.setContent(html_1674ad6c9edc7964c034916fb74120c0);
            
        

        poly_line_908c90c425616e57cbd921d4da9e239b.bindPopup(popup_d27a1a2388a8bba5b95e68ef18ed6c4c)
        ;

        
    
    
            var poly_line_a6be42deec64c2ceefc86a92b225812c = L.polyline(
                [[41.9023507, -87.6573892], [41.9023821, -87.6573061]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_23df8b5fe2aaa4d7c9a8b80febbf0fd1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c37037798441a6f388dbe9cbadb0513a = $(`<div id=&quot;html_c37037798441a6f388dbe9cbadb0513a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187235194 → 12187235199 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316815090&quot; target=&quot;_blank&quot;>1316815090</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.712949953725227</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_23df8b5fe2aaa4d7c9a8b80febbf0fd1.setContent(html_c37037798441a6f388dbe9cbadb0513a);
            
        

        poly_line_a6be42deec64c2ceefc86a92b225812c.bindPopup(popup_23df8b5fe2aaa4d7c9a8b80febbf0fd1)
        ;

        
    
    
            var poly_line_7349f96a6d2130a3ad38c8a9fb80aa2d = L.polyline(
                [[41.9023507, -87.6573892], [41.9027303, -87.6576552], [41.9028997, -87.6577789], [41.9030141, -87.6578659]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d156c2df52492c9fa072316906e258fa = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6716ef7f6a08baa33802a66f478d5408 = $(`<div id=&quot;html_6716ef7f6a08baa33802a66f478d5408&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187235194 → 261112256 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59196050&quot; target=&quot;_blank&quot;>59196050</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>83.66123129399374</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_d156c2df52492c9fa072316906e258fa.setContent(html_6716ef7f6a08baa33802a66f478d5408);
            
        

        poly_line_7349f96a6d2130a3ad38c8a9fb80aa2d.bindPopup(popup_d156c2df52492c9fa072316906e258fa)
        ;

        
    
    
            var poly_line_4117b91c38891abab50c7bd3997b20e6 = L.polyline(
                [[41.9023507, -87.6573892], [41.9021446, -87.6572521], [41.9018039, -87.6570186]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d53feefa96d6db6e01a2da216b16f6d2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0a2e0d9118f4630c425672738e44210d = $(`<div id=&quot;html_0a2e0d9118f4630c425672738e44210d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187235194 → 12187268648 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59196050&quot; target=&quot;_blank&quot;>59196050</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>68.10066882759314</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_d53feefa96d6db6e01a2da216b16f6d2.setContent(html_0a2e0d9118f4630c425672738e44210d);
            
        

        poly_line_4117b91c38891abab50c7bd3997b20e6.bindPopup(popup_d53feefa96d6db6e01a2da216b16f6d2)
        ;

        
    
    
            var poly_line_ba9272aea30b2db565135f1f62451c96 = L.polyline(
                [[41.9022641, -87.657115], [41.9023349, -87.6571585], [41.9024193, -87.6572104], [41.9023896, -87.6572869], [41.9023821, -87.6573061]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c6782ba13d34df14750d39741c2e2063 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f36281588b03d777212ab724a3859100 = $(`<div id=&quot;html_f36281588b03d777212ab724a3859100&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187235196 → 12187235199 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316815090&quot; target=&quot;_blank&quot;>1316815090</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>27.913131256473573</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_c6782ba13d34df14750d39741c2e2063.setContent(html_f36281588b03d777212ab724a3859100);
            
        

        poly_line_ba9272aea30b2db565135f1f62451c96.bindPopup(popup_c6782ba13d34df14750d39741c2e2063)
        ;

        
    
    
            var poly_line_2ecbc6e1c1106e92392e298036ba4a01 = L.polyline(
                [[41.9023821, -87.6573061], [41.9023507, -87.6573892]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ffdf66a010092165c19558031624a43a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_964c7071b817a9f2146e23fdb63381b7 = $(`<div id=&quot;html_964c7071b817a9f2146e23fdb63381b7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187235199 → 12187235194 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316815090&quot; target=&quot;_blank&quot;>1316815090</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.712949953725227</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_ffdf66a010092165c19558031624a43a.setContent(html_964c7071b817a9f2146e23fdb63381b7);
            
        

        poly_line_2ecbc6e1c1106e92392e298036ba4a01.bindPopup(popup_ffdf66a010092165c19558031624a43a)
        ;

        
    
    
            var poly_line_5a543c547e82f263e39df47bb84bafea = L.polyline(
                [[41.9023821, -87.6573061], [41.9023896, -87.6572869], [41.9024193, -87.6572104], [41.9023349, -87.6571585], [41.9022641, -87.657115]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d7b331d73a7cd2da0473a33263204fad = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_da74cb31a4ea5b1b392714caa0e05301 = $(`<div id=&quot;html_da74cb31a4ea5b1b392714caa0e05301&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187235199 → 12187235196 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316815090&quot; target=&quot;_blank&quot;>1316815090</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>27.913131256473577</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_d7b331d73a7cd2da0473a33263204fad.setContent(html_da74cb31a4ea5b1b392714caa0e05301);
            
        

        poly_line_5a543c547e82f263e39df47bb84bafea.bindPopup(popup_d7b331d73a7cd2da0473a33263204fad)
        ;

        
    
    
            var poly_line_295dbdf167d07d09a0b7d31df057729e = L.polyline(
                [[41.9023821, -87.6573061], [41.902421, -87.6573329], [41.9028878, -87.6576541], [41.9030241, -87.6577806], [41.9030424, -87.6577977]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e2ec7932def674c22a50e365fe924ef4 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ec964fcc99f709502f53df6a8c75a24d = $(`<div id=&quot;html_ec964fcc99f709502f53df6a8c75a24d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187235199 → 11967979300 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820024&quot; target=&quot;_blank&quot;>1316820024</a>, <a href=&quot;https://www.openstreetmap.org/way/1316820043&quot; target=&quot;_blank&quot;>1316820043</a>, <a href=&quot;https://www.openstreetmap.org/way/1316820044&quot; target=&quot;_blank&quot;>1316820044</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>84.07664861959123</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>Elston Avenue Bikeway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_e2ec7932def674c22a50e365fe924ef4.setContent(html_ec964fcc99f709502f53df6a8c75a24d);
            
        

        poly_line_295dbdf167d07d09a0b7d31df057729e.bindPopup(popup_e2ec7932def674c22a50e365fe924ef4)
        ;

        
    
    
            var poly_line_aba9fb384675002d2360e4b8b723da9c = L.polyline(
                [[41.8992522, -87.6532804], [41.898977, -87.6533808]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#3cb44b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#3cb44b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_68e98a175901657eca7473b0e6a1e270 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_12894e59a6278e7078735d4b35d9f6c3 = $(`<div id=&quot;html_12894e59a6278e7078735d4b35d9f6c3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187268620 → 12187268622 (key 0)<br>                 <b>Component</b> 1<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316821473&quot; target=&quot;_blank&quot;>1316821473</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>31.709048021871887</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_68e98a175901657eca7473b0e6a1e270.setContent(html_12894e59a6278e7078735d4b35d9f6c3);
            
        

        poly_line_aba9fb384675002d2360e4b8b723da9c.bindPopup(popup_68e98a175901657eca7473b0e6a1e270)
        ;

        
    
    
            var poly_line_d5281cda068fd7ed7c46a9b2f7f07139 = L.polyline(
                [[41.8985874, -87.653523], [41.8986432, -87.6538137]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#3cb44b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#3cb44b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_585129f9d4f182856a2e5a09e80ab88d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7187b5febebf115e7e220e0626aa6f76 = $(`<div id=&quot;html_7187b5febebf115e7e220e0626aa6f76&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187268621 → 7085584932 (key 0)<br>                 <b>Component</b> 1<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316821472&quot; target=&quot;_blank&quot;>1316821472</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>24.847122706941736</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_585129f9d4f182856a2e5a09e80ab88d.setContent(html_7187b5febebf115e7e220e0626aa6f76);
            
        

        poly_line_d5281cda068fd7ed7c46a9b2f7f07139.bindPopup(popup_585129f9d4f182856a2e5a09e80ab88d)
        ;

        
    
    
            var poly_line_68436627ff450ddf775f2d5abfbe8aca = L.polyline(
                [[41.8985874, -87.653523], [41.8985488, -87.6533221], [41.8985634, -87.6532539], [41.8986115, -87.6532203], [41.8986422, -87.6532086], [41.8989157, -87.6531042]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#3cb44b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#3cb44b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_780e2222e858379afafc9a3387f80883 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_59767665811669710c3e28fd0150790d = $(`<div id=&quot;html_59767665811669710c3e28fd0150790d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187268621 → 7085584934 (key 0)<br>                 <b>Component</b> 1<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316821472&quot; target=&quot;_blank&quot;>1316821472</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>64.23826888382753</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_780e2222e858379afafc9a3387f80883.setContent(html_59767665811669710c3e28fd0150790d);
            
        

        poly_line_68436627ff450ddf775f2d5abfbe8aca.bindPopup(popup_780e2222e858379afafc9a3387f80883)
        ;

        
    
    
            var poly_line_4a05ddf4d56a66f1fee9a4d260530881 = L.polyline(
                [[41.8985874, -87.653523], [41.8986513, -87.6534997], [41.8987488, -87.6534641], [41.898977, -87.6533808]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#3cb44b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#3cb44b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_75d6f1b8856c8f2ef70d961c2e3ab7f3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a060ef5001fdee8c93b8b427e0b89db2 = $(`<div id=&quot;html_a060ef5001fdee8c93b8b427e0b89db2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187268621 → 12187268622 (key 0)<br>                 <b>Component</b> 1<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316821473&quot; target=&quot;_blank&quot;>1316821473</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>44.89182928078735</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_75d6f1b8856c8f2ef70d961c2e3ab7f3.setContent(html_a060ef5001fdee8c93b8b427e0b89db2);
            
        

        poly_line_4a05ddf4d56a66f1fee9a4d260530881.bindPopup(popup_75d6f1b8856c8f2ef70d961c2e3ab7f3)
        ;

        
    
    
            var poly_line_775a88c68efd7ce475455b334c6da49d = L.polyline(
                [[41.898977, -87.6533808], [41.8989157, -87.6531042]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#3cb44b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#3cb44b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e0c0ffb5a4631e8bb8cba7043ca1f86e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fb6156b7fbf7cdbee79bd601ce6af0fb = $(`<div id=&quot;html_fb6156b7fbf7cdbee79bd601ce6af0fb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187268622 → 7085584934 (key 0)<br>                 <b>Component</b> 1<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/758646037&quot; target=&quot;_blank&quot;>758646037</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>23.88605306844032</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_e0c0ffb5a4631e8bb8cba7043ca1f86e.setContent(html_fb6156b7fbf7cdbee79bd601ce6af0fb);
            
        

        poly_line_775a88c68efd7ce475455b334c6da49d.bindPopup(popup_e0c0ffb5a4631e8bb8cba7043ca1f86e)
        ;

        
    
    
            var poly_line_0d14147d1317cb080e431067cf7742f7 = L.polyline(
                [[41.898977, -87.6533808], [41.8992522, -87.6532804]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#3cb44b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#3cb44b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_83eb6ad7b4d0a0dc879484269ae25e54 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_09bf5e8f99369c1a3cd37576e85ac92f = $(`<div id=&quot;html_09bf5e8f99369c1a3cd37576e85ac92f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187268622 → 12187268620 (key 0)<br>                 <b>Component</b> 1<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316821473&quot; target=&quot;_blank&quot;>1316821473</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>31.709048021871887</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_83eb6ad7b4d0a0dc879484269ae25e54.setContent(html_09bf5e8f99369c1a3cd37576e85ac92f);
            
        

        poly_line_0d14147d1317cb080e431067cf7742f7.bindPopup(popup_83eb6ad7b4d0a0dc879484269ae25e54)
        ;

        
    
    
            var poly_line_fc88a8c341a4a08882a74eea67105115 = L.polyline(
                [[41.898977, -87.6533808], [41.8987488, -87.6534641], [41.8986513, -87.6534997], [41.8985874, -87.653523]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#3cb44b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#3cb44b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_99154438e5cce34309f226e4b9025451 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_350cbd10d38d62d685e2be990a3262d0 = $(`<div id=&quot;html_350cbd10d38d62d685e2be990a3262d0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187268622 → 12187268621 (key 0)<br>                 <b>Component</b> 1<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316821473&quot; target=&quot;_blank&quot;>1316821473</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>44.89182928078735</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_99154438e5cce34309f226e4b9025451.setContent(html_350cbd10d38d62d685e2be990a3262d0);
            
        

        poly_line_fc88a8c341a4a08882a74eea67105115.bindPopup(popup_99154438e5cce34309f226e4b9025451)
        ;

        
    
    
            var poly_line_f39697534dd69602334cc8ccdcd629ec = L.polyline(
                [[41.9018039, -87.6570186], [41.9017823, -87.6570753]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fea689318e76efea645fa90a7f259d0a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_26bc1bfa2f190f12a42e9e1862daee42 = $(`<div id=&quot;html_26bc1bfa2f190f12a42e9e1862daee42&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187268648 → 12187268651 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316823998&quot; target=&quot;_blank&quot;>1316823998</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>5.271524257888148</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_fea689318e76efea645fa90a7f259d0a.setContent(html_26bc1bfa2f190f12a42e9e1862daee42);
            
        

        poly_line_f39697534dd69602334cc8ccdcd629ec.bindPopup(popup_fea689318e76efea645fa90a7f259d0a)
        ;

        
    
    
            var poly_line_5342c87b1090d425847118ccdf789793 = L.polyline(
                [[41.9018039, -87.6570186], [41.9021446, -87.6572521], [41.9023507, -87.6573892]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_13c88cbfd77bf20b9d3b22a3139dd493 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d18f708cadf8e65b709348ed5cc2fb44 = $(`<div id=&quot;html_d18f708cadf8e65b709348ed5cc2fb44&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187268648 → 12187235194 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59196050&quot; target=&quot;_blank&quot;>59196050</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>68.10066882759314</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_13c88cbfd77bf20b9d3b22a3139dd493.setContent(html_d18f708cadf8e65b709348ed5cc2fb44);
            
        

        poly_line_5342c87b1090d425847118ccdf789793.bindPopup(popup_13c88cbfd77bf20b9d3b22a3139dd493)
        ;

        
    
    
            var poly_line_9960920f958f19aea7dd74b5f68a3797 = L.polyline(
                [[41.9018039, -87.6570186], [41.9017873, -87.6570072], [41.9017298, -87.6569667]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5e6416a01d69b533555185ffccfc3527 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_65fde0ce1b1d8c3517233124c0f12828 = $(`<div id=&quot;html_65fde0ce1b1d8c3517233124c0f12828&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187268648 → 12187274993 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59196050&quot; target=&quot;_blank&quot;>59196050</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>9.292021474108967</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_5e6416a01d69b533555185ffccfc3527.setContent(html_65fde0ce1b1d8c3517233124c0f12828);
            
        

        poly_line_9960920f958f19aea7dd74b5f68a3797.bindPopup(popup_5e6416a01d69b533555185ffccfc3527)
        ;

        
    
    
            var poly_line_085e364b0a2d696fd3cd77df3079fec4 = L.polyline(
                [[41.9017823, -87.6570753], [41.901582, -87.6569377]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_35d679cbb5032223a5036ba31c51690b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_dab41611378ffabb18b649bd9a40f467 = $(`<div id=&quot;html_dab41611378ffabb18b649bd9a40f467&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187268651 → 12784139035 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1290800459&quot; target=&quot;_blank&quot;>1290800459</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>25.01489897466704</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>Elston Avenue Bikeway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_35d679cbb5032223a5036ba31c51690b.setContent(html_dab41611378ffabb18b649bd9a40f467);
            
        

        poly_line_085e364b0a2d696fd3cd77df3079fec4.bindPopup(popup_35d679cbb5032223a5036ba31c51690b)
        ;

        
    
    
            var poly_line_e71b1b6dc5cc5b11231c86fa71bac670 = L.polyline(
                [[41.9017823, -87.6570753], [41.9018039, -87.6570186]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_cb806b09f507e7f743ac8eb380bd4dd6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1bba30fa72ad0c6f44c01ff6d81f3d44 = $(`<div id=&quot;html_1bba30fa72ad0c6f44c01ff6d81f3d44&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187268651 → 12187268648 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316823998&quot; target=&quot;_blank&quot;>1316823998</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>5.271524257888148</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_cb806b09f507e7f743ac8eb380bd4dd6.setContent(html_1bba30fa72ad0c6f44c01ff6d81f3d44);
            
        

        poly_line_e71b1b6dc5cc5b11231c86fa71bac670.bindPopup(popup_cb806b09f507e7f743ac8eb380bd4dd6)
        ;

        
    
    
            var poly_line_d21b0b964d1fa6ddb51a8b69145f81de = L.polyline(
                [[41.9017823, -87.6570753], [41.9017735, -87.6570984], [41.9017674, -87.6571144], [41.9017419, -87.6571828]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_de5e3d6334dccb01f51c9b6f6d528c5d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d961e28265e8cfc5b5192d5931a16906 = $(`<div id=&quot;html_d961e28265e8cfc5b5192d5931a16906&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187268651 → 12187268652 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316823998&quot; target=&quot;_blank&quot;>1316823998</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>9.966771475370377</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_de5e3d6334dccb01f51c9b6f6d528c5d.setContent(html_d961e28265e8cfc5b5192d5931a16906);
            
        

        poly_line_d21b0b964d1fa6ddb51a8b69145f81de.bindPopup(popup_de5e3d6334dccb01f51c9b6f6d528c5d)
        ;

        
    
    
            var poly_line_d03272b0ec497820cee7bd4098aa6847 = L.polyline(
                [[41.9017419, -87.6571828], [41.9017674, -87.6571144], [41.9017735, -87.6570984], [41.9017823, -87.6570753]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0f1aa7482d4aa8215594af1bec0ab868 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_eccacb5c964ba8010cf73cca9bc5fe2c = $(`<div id=&quot;html_eccacb5c964ba8010cf73cca9bc5fe2c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187268652 → 12187268651 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316823998&quot; target=&quot;_blank&quot;>1316823998</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>9.966771475370377</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_0f1aa7482d4aa8215594af1bec0ab868.setContent(html_eccacb5c964ba8010cf73cca9bc5fe2c);
            
        

        poly_line_d03272b0ec497820cee7bd4098aa6847.bindPopup(popup_0f1aa7482d4aa8215594af1bec0ab868)
        ;

        
    
    
            var poly_line_dbb2130b6085e336ea91ec7fa9dcbe48 = L.polyline(
                [[41.9017834, -87.6568305], [41.9017727, -87.6568599], [41.9017652, -87.6568815]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_54b46a775f23d7b1cf2e855041add6fb = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_69acca1785725ef4a0d9ddf3dc4937ed = $(`<div id=&quot;html_69acca1785725ef4a0d9ddf3dc4937ed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187274992 → 12187274995 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316819969&quot; target=&quot;_blank&quot;>1316819969</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>4.681111883506296</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_54b46a775f23d7b1cf2e855041add6fb.setContent(html_69acca1785725ef4a0d9ddf3dc4937ed);
            
        

        poly_line_dbb2130b6085e336ea91ec7fa9dcbe48.bindPopup(popup_54b46a775f23d7b1cf2e855041add6fb)
        ;

        
    
    
            var poly_line_20e3a96fd0bd0971c62e273e8e9a9b33 = L.polyline(
                [[41.9017298, -87.6569667], [41.9015986, -87.6568759]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a672e7034051f0f4db64b44467de953d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_72f02b45a6788b955d57ba5b58aeaabd = $(`<div id=&quot;html_72f02b45a6788b955d57ba5b58aeaabd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187274993 → 12784139034 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59196050&quot; target=&quot;_blank&quot;>59196050</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>16.410499498817714</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_a672e7034051f0f4db64b44467de953d.setContent(html_72f02b45a6788b955d57ba5b58aeaabd);
            
        

        poly_line_20e3a96fd0bd0971c62e273e8e9a9b33.bindPopup(popup_a672e7034051f0f4db64b44467de953d)
        ;

        
    
    
            var poly_line_27452f8cc9f72cf0fcf52edc430bdf7b = L.polyline(
                [[41.9017298, -87.6569667], [41.9017652, -87.6568815]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_782ac6bdf26b27cfe63bf3e5e5a8fafc = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e4f565aafc72d4312d23db705bc53dac = $(`<div id=&quot;html_e4f565aafc72d4312d23db705bc53dac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187274993 → 12187274995 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316819969&quot; target=&quot;_blank&quot;>1316819969</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>8.075585131069008</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_782ac6bdf26b27cfe63bf3e5e5a8fafc.setContent(html_e4f565aafc72d4312d23db705bc53dac);
            
        

        poly_line_27452f8cc9f72cf0fcf52edc430bdf7b.bindPopup(popup_782ac6bdf26b27cfe63bf3e5e5a8fafc)
        ;

        
    
    
            var poly_line_6824b9dae34711c8f3867777d8b40d13 = L.polyline(
                [[41.9017298, -87.6569667], [41.9017873, -87.6570072], [41.9018039, -87.6570186]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b9f4ab35a6215256329a87e5ecbf9025 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_79563e5c56464d5d30cd6d4ce7f298f8 = $(`<div id=&quot;html_79563e5c56464d5d30cd6d4ce7f298f8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187274993 → 12187268648 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/59196050&quot; target=&quot;_blank&quot;>59196050</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>9.292021474108967</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_b9f4ab35a6215256329a87e5ecbf9025.setContent(html_79563e5c56464d5d30cd6d4ce7f298f8);
            
        

        poly_line_6824b9dae34711c8f3867777d8b40d13.bindPopup(popup_b9f4ab35a6215256329a87e5ecbf9025)
        ;

        
    
    
            var poly_line_3f5c5c4b3fa8ac084eaeed7f6aec620e = L.polyline(
                [[41.9017652, -87.6568815], [41.9017298, -87.6569667]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8da96aea83a67c764155493ea48c4871 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0756fbd04e04c644a0cd7602d7b2b18a = $(`<div id=&quot;html_0756fbd04e04c644a0cd7602d7b2b18a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187274995 → 12187274993 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316819969&quot; target=&quot;_blank&quot;>1316819969</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>8.075585131069008</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_8da96aea83a67c764155493ea48c4871.setContent(html_0756fbd04e04c644a0cd7602d7b2b18a);
            
        

        poly_line_3f5c5c4b3fa8ac084eaeed7f6aec620e.bindPopup(popup_8da96aea83a67c764155493ea48c4871)
        ;

        
    
    
            var poly_line_af9a8ede58cd34f07b7c2396cc3af1ce = L.polyline(
                [[41.9017652, -87.6568815], [41.9023355, -87.657274], [41.9023821, -87.6573061]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_24296b8bfd0dba2076f699a16efba6ec = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e300bf9f8809d3f0bb5e94c4fcdf7b17 = $(`<div id=&quot;html_e300bf9f8809d3f0bb5e94c4fcdf7b17&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187274995 → 12187235199 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1290800458&quot; target=&quot;_blank&quot;>1290800458</a>, <a href=&quot;https://www.openstreetmap.org/way/1316820044&quot; target=&quot;_blank&quot;>1316820044</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>77.0732781338312</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>Elston Avenue Bikeway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_24296b8bfd0dba2076f699a16efba6ec.setContent(html_e300bf9f8809d3f0bb5e94c4fcdf7b17);
            
        

        poly_line_af9a8ede58cd34f07b7c2396cc3af1ce.bindPopup(popup_24296b8bfd0dba2076f699a16efba6ec)
        ;

        
    
    
            var poly_line_3ac18f8c1c96ff8ce5342da7ffcd92cb = L.polyline(
                [[41.9017652, -87.6568815], [41.9017727, -87.6568599], [41.9017834, -87.6568305]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fa6eb86a865b4313c3931ae1d57a88e8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_88ad4a013eafae5eb449c798151f6165 = $(`<div id=&quot;html_88ad4a013eafae5eb449c798151f6165&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187274995 → 12187274992 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316819969&quot; target=&quot;_blank&quot;>1316819969</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>4.681111883506296</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_fa6eb86a865b4313c3931ae1d57a88e8.setContent(html_88ad4a013eafae5eb449c798151f6165);
            
        

        poly_line_3ac18f8c1c96ff8ce5342da7ffcd92cb.bindPopup(popup_fa6eb86a865b4313c3931ae1d57a88e8)
        ;

        
    
    
            var poly_line_2d7f34740da5a364f88499d6927ee31d = L.polyline(
                [[41.9055644, -87.6597211], [41.9055685, -87.6596541]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_18ef4901c7a0d4c28d82debd1aae5ec3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ce5e45d776c86825b558acc186dc2dbb = $(`<div id=&quot;html_ce5e45d776c86825b558acc186dc2dbb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187279998 → 7505359088 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/802366681&quot; target=&quot;_blank&quot;>802366681</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>5.563401279287485</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_18ef4901c7a0d4c28d82debd1aae5ec3.setContent(html_ce5e45d776c86825b558acc186dc2dbb);
            
        

        poly_line_2d7f34740da5a364f88499d6927ee31d.bindPopup(popup_18ef4901c7a0d4c28d82debd1aae5ec3)
        ;

        
    
    
            var poly_line_15d9945801831850b05ac507d5132634 = L.polyline(
                [[41.9055644, -87.6597211], [41.9053769, -87.659688]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6034eb70e0f66a89e0713fd3b910991a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_4750a0e854aa8723653af29a45560745 = $(`<div id=&quot;html_4750a0e854aa8723653af29a45560745&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187279998 → 12187279999 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316819992&quot; target=&quot;_blank&quot;>1316819992</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.028255598070807</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>Elston Avenue Bikeway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_6034eb70e0f66a89e0713fd3b910991a.setContent(html_4750a0e854aa8723653af29a45560745);
            
        

        poly_line_15d9945801831850b05ac507d5132634.bindPopup(popup_6034eb70e0f66a89e0713fd3b910991a)
        ;

        
    
    
            var poly_line_84a358c61ab1f5a420c5591fdd0f6bef = L.polyline(
                [[41.9055644, -87.6597211], [41.9055625, -87.6597522], [41.9055605, -87.6597864], [41.9055598, -87.6598129], [41.9055498, -87.6602011]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_df623feeb70520cf96e07404f872da21 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_43872d861592805b9ec275e33e828cda = $(`<div id=&quot;html_43872d861592805b9ec275e33e828cda&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187279998 → 7505359090 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/802366681&quot; target=&quot;_blank&quot;>802366681</a>, <a href=&quot;https://www.openstreetmap.org/way/802366682&quot; target=&quot;_blank&quot;>802366682</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>39.76115899920537</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_df623feeb70520cf96e07404f872da21.setContent(html_43872d861592805b9ec275e33e828cda);
            
        

        poly_line_84a358c61ab1f5a420c5591fdd0f6bef.bindPopup(popup_df623feeb70520cf96e07404f872da21)
        ;

        
    
    
            var poly_line_3e4f5328589da882e9d62192f48ec520 = L.polyline(
                [[41.9053769, -87.659688], [41.9053784, -87.6596202]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8d610c7e06fbcad60149ab357425eb06 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2e70bf905d49119234d95f7f955c4ebe = $(`<div id=&quot;html_2e70bf905d49119234d95f7f955c4ebe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187279999 → 2565051779 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/249978863&quot; target=&quot;_blank&quot;>249978863</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>residential</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>5.613390552778559</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Potomac Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_8d610c7e06fbcad60149ab357425eb06.setContent(html_2e70bf905d49119234d95f7f955c4ebe);
            
        

        poly_line_3e4f5328589da882e9d62192f48ec520.bindPopup(popup_8d610c7e06fbcad60149ab357425eb06)
        ;

        
    
    
            var poly_line_159a6ba7cadf8dd9de11b5411736e411 = L.polyline(
                [[41.9053769, -87.659688], [41.9053762, -87.6597184], [41.9053759, -87.6597371], [41.9053757, -87.6597494], [41.9053665, -87.6602108], [41.9054465, -87.6602305], [41.9056788, -87.6602725], [41.9061227, -87.6603593], [41.906145, -87.6603631], [41.9062061, -87.6603679], [41.9062098, -87.6599044], [41.9062094, -87.6598678], [41.9062104, -87.6598414]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e0facb0c3a68d2729d32abf3c2fb0fc3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e0cdd664b6c14c7aaa885098c878dee8 = $(`<div id=&quot;html_e0cdd664b6c14c7aaa885098c878dee8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187279999 → 11967979359 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/802366683&quot; target=&quot;_blank&quot;>802366683</a>, <a href=&quot;https://www.openstreetmap.org/way/249978862&quot; target=&quot;_blank&quot;>249978862</a>, <a href=&quot;https://www.openstreetmap.org/way/249978863&quot; target=&quot;_blank&quot;>249978863</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>['residential', 'service']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>181.14879454295163</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>['West Evergreen Avenue', 'West Potomac Avenue']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr>             </table>         </div>         </div>`)[0];
                popup_e0facb0c3a68d2729d32abf3c2fb0fc3.setContent(html_e0cdd664b6c14c7aaa885098c878dee8);
            
        

        poly_line_159a6ba7cadf8dd9de11b5411736e411.bindPopup(popup_e0facb0c3a68d2729d32abf3c2fb0fc3)
        ;

        
    
    
            var poly_line_58e97209a9a49bb344715ca8760b737b = L.polyline(
                [[41.9053769, -87.659688], [41.9052945, -87.6596738], [41.9049894, -87.6596181], [41.9049648, -87.6596133]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f0127238b23bdfd244e9fd5c54086b58 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1064c802d023c2917bd52e6f58666fe2 = $(`<div id=&quot;html_1064c802d023c2917bd52e6f58666fe2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187279999 → 11967979356 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316819992&quot; target=&quot;_blank&quot;>1316819992</a>, <a href=&quot;https://www.openstreetmap.org/way/1316819991&quot; target=&quot;_blank&quot;>1316819991</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>46.238965334643105</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>Elston Avenue Bikeway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_f0127238b23bdfd244e9fd5c54086b58.setContent(html_1064c802d023c2917bd52e6f58666fe2);
            
        

        poly_line_58e97209a9a49bb344715ca8760b737b.bindPopup(popup_f0127238b23bdfd244e9fd5c54086b58)
        ;

        
    
    
            var poly_line_bcebc987e5daa37585d3c21bc5d63382 = L.polyline(
                [[41.9056367, -87.6596675], [41.9055685, -87.6596541]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f636b39efc3277b9bc63533e82403dba = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c0fd936a9eca3ee570b88c18d96e16d9 = $(`<div id=&quot;html_c0fd936a9eca3ee570b88c18d96e16d9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280008 → 7505359088 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/221317663&quot; target=&quot;_blank&quot;>221317663</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>3</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.664155912785325</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_f636b39efc3277b9bc63533e82403dba.setContent(html_c0fd936a9eca3ee570b88c18d96e16d9);
            
        

        poly_line_bcebc987e5daa37585d3c21bc5d63382.bindPopup(popup_f636b39efc3277b9bc63533e82403dba)
        ;

        
    
    
            var poly_line_2f96e0dd64fef2f38f9a8b6ccc488aa2 = L.polyline(
                [[41.9056367, -87.6596675], [41.905646, -87.6595766]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4e8701cf12c2d5d978436e337c58ec6c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b540391280361d089a856c59260e28f7 = $(`<div id=&quot;html_b540391280361d089a856c59260e28f7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280008 → 12187280018 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820002&quot; target=&quot;_blank&quot;>1316820002</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.593309683636811</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_4e8701cf12c2d5d978436e337c58ec6c.setContent(html_b540391280361d089a856c59260e28f7);
            
        

        poly_line_2f96e0dd64fef2f38f9a8b6ccc488aa2.bindPopup(popup_4e8701cf12c2d5d978436e337c58ec6c)
        ;

        
    
    
            var poly_line_1fecb62f6f3cd625e7d5a4b024b61a96 = L.polyline(
                [[41.9056367, -87.6596675], [41.9060893, -87.6597553], [41.9062112, -87.6597699]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f67508c4c157e24ffc61d9dd6474fb4c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_facb588f569fbd398e42df472c116811 = $(`<div id=&quot;html_facb588f569fbd398e42df472c116811&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280008 → 1699464731 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/221317663&quot; target=&quot;_blank&quot;>221317663</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>3</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>64.45713089578102</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_f67508c4c157e24ffc61d9dd6474fb4c.setContent(html_facb588f569fbd398e42df472c116811);
            
        

        poly_line_1fecb62f6f3cd625e7d5a4b024b61a96.bindPopup(popup_f67508c4c157e24ffc61d9dd6474fb4c)
        ;

        
    
    
            var poly_line_6d54c6204f1afef4e52d07e404450a0e = L.polyline(
                [[41.9056611, -87.6594312], [41.905795, -87.6594181], [41.9062793, -87.6594941], [41.9063494, -87.6595338], [41.9063739, -87.6595511], [41.906404, -87.6595723], [41.9066124, -87.6596231], [41.9066811, -87.659642], [41.906692, -87.6596555], [41.9067002, -87.659691], [41.906698, -87.6597181], [41.9066938, -87.6597688]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b7dbfe43dc9d63714d81a28351923e07 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b24d65b0a0fec7051f75368c844f4454 = $(`<div id=&quot;html_b24d65b0a0fec7051f75368c844f4454&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280009 → 12187280021 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820002&quot; target=&quot;_blank&quot;>1316820002</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>127.0124540969446</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_b7dbfe43dc9d63714d81a28351923e07.setContent(html_b24d65b0a0fec7051f75368c844f4454);
            
        

        poly_line_6d54c6204f1afef4e52d07e404450a0e.bindPopup(popup_b7dbfe43dc9d63714d81a28351923e07)
        ;

        
    
    
            var poly_line_7196723fb2c156e713bdc707ed59d073 = L.polyline(
                [[41.9056611, -87.6594312], [41.9056699, -87.659357], [41.9056719, -87.6593406]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d35191f84eb21e462887bab1ce9d2329 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_842413626a60d1f76d3a63bb4a93571a = $(`<div id=&quot;html_842413626a60d1f76d3a63bb4a93571a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280009 → 12187320343 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316825482&quot; target=&quot;_blank&quot;>1316825482</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.5933095213345405</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_d35191f84eb21e462887bab1ce9d2329.setContent(html_842413626a60d1f76d3a63bb4a93571a);
            
        

        poly_line_7196723fb2c156e713bdc707ed59d073.bindPopup(popup_d35191f84eb21e462887bab1ce9d2329)
        ;

        
    
    
            var poly_line_617dfb30f1980dd11fb4e607bbbab182 = L.polyline(
                [[41.9066884, -87.6598337], [41.9064076, -87.6597822], [41.9062112, -87.6597699]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_abdd6715d46d41e5fe9aeb3981157ad2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_06b35a6919fb0ef5a3afb2f8be3adafb = $(`<div id=&quot;html_06b35a6919fb0ef5a3afb2f8be3adafb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280017 → 1699464731 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/221317663&quot; target=&quot;_blank&quot;>221317663</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>3</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>53.3755268656309</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_abdd6715d46d41e5fe9aeb3981157ad2.setContent(html_06b35a6919fb0ef5a3afb2f8be3adafb);
            
        

        poly_line_617dfb30f1980dd11fb4e607bbbab182.bindPopup(popup_abdd6715d46d41e5fe9aeb3981157ad2)
        ;

        
    
    
            var poly_line_65fdead9c260ea3237b13ffe25241f27 = L.polyline(
                [[41.9066884, -87.6598337], [41.9067581, -87.6598465], [41.9070252, -87.6599065], [41.9071388, -87.6599435]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4d62414a2ddc0a19c27a722d86073a35 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9fd25384913cec3664deda166472e9e0 = $(`<div id=&quot;html_9fd25384913cec3664deda166472e9e0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280017 → 734123164 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/221317663&quot; target=&quot;_blank&quot;>221317663</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>3</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>50.9323129145836</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_4d62414a2ddc0a19c27a722d86073a35.setContent(html_9fd25384913cec3664deda166472e9e0);
            
        

        poly_line_65fdead9c260ea3237b13ffe25241f27.bindPopup(popup_4d62414a2ddc0a19c27a722d86073a35)
        ;

        
    
    
            var poly_line_0136ec9e5bfde070e6fdcd4c2f73eeff = L.polyline(
                [[41.905646, -87.6595766], [41.9066938, -87.6597688]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_bd9d12a5ab1099eb0686992da428281a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f0c70a31ea7b957fc050e46610ed1937 = $(`<div id=&quot;html_f0c70a31ea7b957fc050e46610ed1937&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280018 → 12187280021 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316819993&quot; target=&quot;_blank&quot;>1316819993</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>117.59089604566944</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>Elston Avenue Bikeway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_bd9d12a5ab1099eb0686992da428281a.setContent(html_f0c70a31ea7b957fc050e46610ed1937);
            
        

        poly_line_0136ec9e5bfde070e6fdcd4c2f73eeff.bindPopup(popup_bd9d12a5ab1099eb0686992da428281a)
        ;

        
    
    
            var poly_line_44b3de054f8303f2cecb75bc7335b832 = L.polyline(
                [[41.905646, -87.6595766], [41.905649, -87.6595483], [41.9056611, -87.6594312]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_65770d32eac8e4709071ede7f55ba9f8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e33bd194e99baa6163861517836b5c33 = $(`<div id=&quot;html_e33bd194e99baa6163861517836b5c33&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280018 → 12187280009 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820002&quot; target=&quot;_blank&quot;>1316820002</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>12.149382262533816</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_65770d32eac8e4709071ede7f55ba9f8.setContent(html_e33bd194e99baa6163861517836b5c33);
            
        

        poly_line_44b3de054f8303f2cecb75bc7335b832.bindPopup(popup_65770d32eac8e4709071ede7f55ba9f8)
        ;

        
    
    
            var poly_line_845086d977ced09039573e25446e199d = L.polyline(
                [[41.9066938, -87.6597688], [41.9066884, -87.6598337]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5875e9d884dcc351847a0a582bf38ee0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8a8b11b1677fa048cd172b7b4d02b415 = $(`<div id=&quot;html_8a8b11b1677fa048cd172b7b4d02b415&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280021 → 12187280017 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820002&quot; target=&quot;_blank&quot;>1316820002</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>5.4042677266066015</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_5875e9d884dcc351847a0a582bf38ee0.setContent(html_8a8b11b1677fa048cd172b7b4d02b415);
            
        

        poly_line_845086d977ced09039573e25446e199d.bindPopup(popup_5875e9d884dcc351847a0a582bf38ee0)
        ;

        
    
    
            var poly_line_92efd6adb52c2643f2839de729cc1793 = L.polyline(
                [[41.9066938, -87.6597688], [41.9067323, -87.6597759], [41.9070265, -87.6598519], [41.9071388, -87.6599435]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4425e769500089961f3f45eaa2293a97 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e0c850299d77c3d77f80ed0ade4226c5 = $(`<div id=&quot;html_e0c850299d77c3d77f80ed0ade4226c5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280021 → 734123164 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316819993&quot; target=&quot;_blank&quot;>1316819993</a>, <a href=&quot;https://www.openstreetmap.org/way/1316819997&quot; target=&quot;_blank&quot;>1316819997</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>52.24176517876501</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>Elston Avenue Bikeway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_4425e769500089961f3f45eaa2293a97.setContent(html_e0c850299d77c3d77f80ed0ade4226c5);
            
        

        poly_line_92efd6adb52c2643f2839de729cc1793.bindPopup(popup_4425e769500089961f3f45eaa2293a97)
        ;

        
    
    
            var poly_line_6cca394df3aaa3e4838290a37020e1d7 = L.polyline(
                [[41.9046194, -87.6596109], [41.9046228, -87.6595413], [41.9046241, -87.6595134]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_aa5d1eb914d97810f8fc305b0da324a9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7ea3297b85d5d7e63be95349ee86fe13 = $(`<div id=&quot;html_7ea3297b85d5d7e63be95349ee86fe13&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280046 → 12187280048 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820010&quot; target=&quot;_blank&quot;>1316820010</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>8.08579954460896</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_aa5d1eb914d97810f8fc305b0da324a9.setContent(html_7ea3297b85d5d7e63be95349ee86fe13);
            
        

        poly_line_6cca394df3aaa3e4838290a37020e1d7.bindPopup(popup_aa5d1eb914d97810f8fc305b0da324a9)
        ;

        
    
    
            var poly_line_8f7a93f3338aec6c84c9f05022ca7f15 = L.polyline(
                [[41.9046283, -87.6594324], [41.9045923, -87.6594144]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6fdffd076214053d1056cf4cb72d926b = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c0cf05f8214a81df3f62d523155aa5b8 = $(`<div id=&quot;html_c0cf05f8214a81df3f62d523155aa5b8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280047 → 5493314491 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/221317663&quot; target=&quot;_blank&quot;>221317663</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>3</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>4.27120852488817</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_6fdffd076214053d1056cf4cb72d926b.setContent(html_c0cf05f8214a81df3f62d523155aa5b8);
            
        

        poly_line_8f7a93f3338aec6c84c9f05022ca7f15.bindPopup(popup_6fdffd076214053d1056cf4cb72d926b)
        ;

        
    
    
            var poly_line_e7d51f6f44433e9a2c41a2654e383418 = L.polyline(
                [[41.9046283, -87.6594324], [41.9046241, -87.6595134]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1e030537eceae699c7fab4c7d573360e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7a642ddf1cd9482bb1fdc14330c7383a = $(`<div id=&quot;html_7a642ddf1cd9482bb1fdc14330c7383a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280047 → 12187280048 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820010&quot; target=&quot;_blank&quot;>1316820010</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>6.719629614468011</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_1e030537eceae699c7fab4c7d573360e.setContent(html_7a642ddf1cd9482bb1fdc14330c7383a);
            
        

        poly_line_e7d51f6f44433e9a2c41a2654e383418.bindPopup(popup_1e030537eceae699c7fab4c7d573360e)
        ;

        
    
    
            var poly_line_2e6dbc96f7aa42b6473d65f8d98f3776 = L.polyline(
                [[41.9046283, -87.6594324], [41.9046861, -87.6594585], [41.9047622, -87.6594886], [41.9048166, -87.659508], [41.9048885, -87.6595295], [41.9049696, -87.6595455]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_eb6932957327c8c5f2f9ac0a3b93e727 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6873d1fac272b58bad9e87854c9aa045 = $(`<div id=&quot;html_6873d1fac272b58bad9e87854c9aa045&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280047 → 1699464718 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/221317663&quot; target=&quot;_blank&quot;>221317663</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>3</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>39.16489001688555</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_eb6932957327c8c5f2f9ac0a3b93e727.setContent(html_6873d1fac272b58bad9e87854c9aa045);
            
        

        poly_line_2e6dbc96f7aa42b6473d65f8d98f3776.bindPopup(popup_eb6932957327c8c5f2f9ac0a3b93e727)
        ;

        
    
    
            var poly_line_89d66793edc23156f6717d41f081b548 = L.polyline(
                [[41.9046241, -87.6595134], [41.9046283, -87.6594324]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f2e7e4718100925d433af52caeb5e942 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0819fd02ff56b4e5b183971d1c6d050f = $(`<div id=&quot;html_0819fd02ff56b4e5b183971d1c6d050f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280048 → 12187280047 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820010&quot; target=&quot;_blank&quot;>1316820010</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>6.719629614468011</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_f2e7e4718100925d433af52caeb5e942.setContent(html_0819fd02ff56b4e5b183971d1c6d050f);
            
        

        poly_line_89d66793edc23156f6717d41f081b548.bindPopup(popup_f2e7e4718100925d433af52caeb5e942)
        ;

        
    
    
            var poly_line_fe689a8dd821e4b17a02ad9917aafaae = L.polyline(
                [[41.9046241, -87.6595134], [41.9045651, -87.6594869], [41.9044766, -87.6594382], [41.9044137, -87.659394], [41.9043268, -87.6593244], [41.9042743, -87.6592793], [41.9042014, -87.6592146], [41.904054, -87.6590517], [41.90395, -87.6589318]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e314a3b0adb2afabfb216584ba3bb1b2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d59f2fe2862b0ac07132f63fe7525718 = $(`<div id=&quot;html_d59f2fe2862b0ac07132f63fe7525718&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280048 → 12187280172 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820008&quot; target=&quot;_blank&quot;>1316820008</a>, <a href=&quot;https://www.openstreetmap.org/way/1316820009&quot; target=&quot;_blank&quot;>1316820009</a>, <a href=&quot;https://www.openstreetmap.org/way/1316820016&quot; target=&quot;_blank&quot;>1316820016</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>89.79776017214503</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>Elston Avenue Bikeway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_e314a3b0adb2afabfb216584ba3bb1b2.setContent(html_d59f2fe2862b0ac07132f63fe7525718);
            
        

        poly_line_fe689a8dd821e4b17a02ad9917aafaae.bindPopup(popup_e314a3b0adb2afabfb216584ba3bb1b2)
        ;

        
    
    
            var poly_line_74825e05af99ebd7c08cb82c7e5a6f48 = L.polyline(
                [[41.9046241, -87.6595134], [41.9046228, -87.6595413], [41.9046194, -87.6596109]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5fcd936a57da780ba2b3808a10595f10 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3f510c7378a7938a03ff6e33c023fb80 = $(`<div id=&quot;html_3f510c7378a7938a03ff6e33c023fb80&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280048 → 12187280046 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820010&quot; target=&quot;_blank&quot;>1316820010</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>8.08579954460896</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_5fcd936a57da780ba2b3808a10595f10.setContent(html_3f510c7378a7938a03ff6e33c023fb80);
            
        

        poly_line_74825e05af99ebd7c08cb82c7e5a6f48.bindPopup(popup_5fcd936a57da780ba2b3808a10595f10)
        ;

        
    
    
            var poly_line_6b2a5a6f9f49cf297a87f068b1e1d122 = L.polyline(
                [[41.9030865, -87.6581732], [41.9031178, -87.6581077], [41.9031313, -87.6580795]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_31af7aca3e818e19fb58bb33b336ea93 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_dd2c3c1cb2f54219d89e4c1df7d6e27b = $(`<div id=&quot;html_dd2c3c1cb2f54219d89e4c1df7d6e27b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280067 → 12187280069 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820023&quot; target=&quot;_blank&quot;>1316820023</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>9.216799975997384</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_31af7aca3e818e19fb58bb33b336ea93.setContent(html_dd2c3c1cb2f54219d89e4c1df7d6e27b);
            
        

        poly_line_6b2a5a6f9f49cf297a87f068b1e1d122.bindPopup(popup_31af7aca3e818e19fb58bb33b336ea93)
        ;

        
    
    
            var poly_line_2b84fcec491d4bbd157bcf9d3b758efe = L.polyline(
                [[41.9031652, -87.6580092], [41.9030141, -87.6578659]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b1e242feb8ead9edcc51d6c3f89ce772 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_10e0735a29e72b53302e8c03bc9fc1f4 = $(`<div id=&quot;html_10e0735a29e72b53302e8c03bc9fc1f4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280068 → 261112256 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435393426&quot; target=&quot;_blank&quot;>435393426</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.565509414732592</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_b1e242feb8ead9edcc51d6c3f89ce772.setContent(html_10e0735a29e72b53302e8c03bc9fc1f4);
            
        

        poly_line_2b84fcec491d4bbd157bcf9d3b758efe.bindPopup(popup_b1e242feb8ead9edcc51d6c3f89ce772)
        ;

        
    
    
            var poly_line_58c6f8dc2499d75e3cc8a225d6a428be = L.polyline(
                [[41.9031652, -87.6580092], [41.9031313, -87.6580795]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d0496072f30ab3257de6f13f8ca777c7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_392c91921dee07b0101f6f5f201fa383 = $(`<div id=&quot;html_392c91921dee07b0101f6f5f201fa383&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280068 → 12187280069 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820023&quot; target=&quot;_blank&quot;>1316820023</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>6.9324193949959465</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_d0496072f30ab3257de6f13f8ca777c7.setContent(html_392c91921dee07b0101f6f5f201fa383);
            
        

        poly_line_58c6f8dc2499d75e3cc8a225d6a428be.bindPopup(popup_d0496072f30ab3257de6f13f8ca777c7)
        ;

        
    
    
            var poly_line_e0d3f00df0001ff1c608dea15bcbf449 = L.polyline(
                [[41.9031652, -87.6580092], [41.9033678, -87.6582125], [41.9034918, -87.6583384]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2c49cfc3a4aafe03bc31724af71fe558 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_127f642cfb2ef2ce3d684a19f4466777 = $(`<div id=&quot;html_127f642cfb2ef2ce3d684a19f4466777&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280068 → 344357410 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/435393426&quot; target=&quot;_blank&quot;>435393426</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>4</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>45.399872879436685</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_2c49cfc3a4aafe03bc31724af71fe558.setContent(html_127f642cfb2ef2ce3d684a19f4466777);
            
        

        poly_line_e0d3f00df0001ff1c608dea15bcbf449.bindPopup(popup_2c49cfc3a4aafe03bc31724af71fe558)
        ;

        
    
    
            var poly_line_4554eeb2f0ba66c8ad760cbea59cf2d0 = L.polyline(
                [[41.9031313, -87.6580795], [41.9031652, -87.6580092]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d178f2880d4e37435d243c667722d530 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e2cd69cbdf69aab3bad49b36127807f6 = $(`<div id=&quot;html_e2cd69cbdf69aab3bad49b36127807f6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280069 → 12187280068 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820023&quot; target=&quot;_blank&quot;>1316820023</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>6.9324193949959465</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_d178f2880d4e37435d243c667722d530.setContent(html_e2cd69cbdf69aab3bad49b36127807f6);
            
        

        poly_line_4554eeb2f0ba66c8ad760cbea59cf2d0.bindPopup(popup_d178f2880d4e37435d243c667722d530)
        ;

        
    
    
            var poly_line_198a8336fd76e10ce3388f0fd17595dd = L.polyline(
                [[41.9031313, -87.6580795], [41.903054, -87.6580038], [41.9029558, -87.6579167], [41.9028477, -87.6578235], [41.9027446, -87.657741], [41.9026598, -87.6576783], [41.9017823, -87.6570753]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f5bf4b47126e2d5d251004292ceeb0e9 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_18c3ff143081a160cdb0dafac194811d = $(`<div id=&quot;html_18c3ff143081a160cdb0dafac194811d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280069 → 12187268651 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1290800459&quot; target=&quot;_blank&quot;>1290800459</a>, <a href=&quot;https://www.openstreetmap.org/way/1316820022&quot; target=&quot;_blank&quot;>1316820022</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>171.70391558509317</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>Elston Avenue Bikeway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_f5bf4b47126e2d5d251004292ceeb0e9.setContent(html_18c3ff143081a160cdb0dafac194811d);
            
        

        poly_line_198a8336fd76e10ce3388f0fd17595dd.bindPopup(popup_f5bf4b47126e2d5d251004292ceeb0e9)
        ;

        
    
    
            var poly_line_751e0d3d0cbe3396203404f27b782271 = L.polyline(
                [[41.9031313, -87.6580795], [41.9031178, -87.6581077], [41.9030865, -87.6581732]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e65d05630220c7c902f7d50ff8fd0b30 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e82fc5fb9acff4aab86df18e3fd8ee70 = $(`<div id=&quot;html_e82fc5fb9acff4aab86df18e3fd8ee70&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280069 → 12187280067 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820023&quot; target=&quot;_blank&quot;>1316820023</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>9.216799975997384</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_e65d05630220c7c902f7d50ff8fd0b30.setContent(html_e82fc5fb9acff4aab86df18e3fd8ee70);
            
        

        poly_line_751e0d3d0cbe3396203404f27b782271.bindPopup(popup_e65d05630220c7c902f7d50ff8fd0b30)
        ;

        
    
    
            var poly_line_9c85226efb8821e1bc56c674ad43b660 = L.polyline(
                [[41.9034938, -87.6582399], [41.9034918, -87.6583384]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8ff91bf5e0c2f779694724131532d174 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7f00197dce3bf0ff8cd9e3723b9f1560 = $(`<div id=&quot;html_7f00197dce3bf0ff8cd9e3723b9f1560&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280074 → 344357410 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820033&quot; target=&quot;_blank&quot;>1316820033</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>8.154819841534417</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_8ff91bf5e0c2f779694724131532d174.setContent(html_7f00197dce3bf0ff8cd9e3723b9f1560);
            
        

        poly_line_9c85226efb8821e1bc56c674ad43b660.bindPopup(popup_8ff91bf5e0c2f779694724131532d174)
        ;

        
    
    
            var poly_line_4d5760e6f103ddc09b961c90b0e590e8 = L.polyline(
                [[41.9034938, -87.6582399], [41.9036454, -87.6583901], [41.9041624, -87.6589768], [41.9042469, -87.6590653], [41.9043178, -87.6591323], [41.9043358, -87.6591476], [41.9043749, -87.6591809], [41.9043836, -87.6591871]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ec1dfa3f3a47b5a42264296e5db1aec0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_800b1a51eaa6c916779e2b2f72cc9fef = $(`<div id=&quot;html_800b1a51eaa6c916779e2b2f72cc9fef&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280074 → 11967979353 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820018&quot; target=&quot;_blank&quot;>1316820018</a>, <a href=&quot;https://www.openstreetmap.org/way/1316820020&quot; target=&quot;_blank&quot;>1316820020</a>, <a href=&quot;https://www.openstreetmap.org/way/1290800460&quot; target=&quot;_blank&quot;>1290800460</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>126.35628133948995</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>Elston Avenue Bikeway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_ec1dfa3f3a47b5a42264296e5db1aec0.setContent(html_800b1a51eaa6c916779e2b2f72cc9fef);
            
        

        poly_line_4d5760e6f103ddc09b961c90b0e590e8.bindPopup(popup_ec1dfa3f3a47b5a42264296e5db1aec0)
        ;

        
    
    
            var poly_line_698e9e03adec73862ff7d6466120a386 = L.polyline(
                [[41.9034938, -87.6582399], [41.9034962, -87.6581325], [41.9034985, -87.6579978]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ed70f4a451889e2092d6b3cfb964da0a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b289f4e40fde0dbc58ea0375ff7fdccb = $(`<div id=&quot;html_b289f4e40fde0dbc58ea0375ff7fdccb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280074 → 11751927278 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820033&quot; target=&quot;_blank&quot;>1316820033</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.0429538512532</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_ed70f4a451889e2092d6b3cfb964da0a.setContent(html_b289f4e40fde0dbc58ea0375ff7fdccb);
            
        

        poly_line_698e9e03adec73862ff7d6466120a386.bindPopup(popup_ed70f4a451889e2092d6b3cfb964da0a)
        ;

        
    
    
            var poly_line_10b1392278454c5dade2fa5985689162 = L.polyline(
                [[41.9031261, -87.6578749], [41.9031823, -87.6579267], [41.9033695, -87.6581171], [41.9034938, -87.6582399]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_92f33ee1644f771f3f3a5b9782eecb61 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b2b7600606fa0796a444661432be9cbc = $(`<div id=&quot;html_b2b7600606fa0796a444661432be9cbc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280080 → 12187280074 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820024&quot; target=&quot;_blank&quot;>1316820024</a>, <a href=&quot;https://www.openstreetmap.org/way/1316820025&quot; target=&quot;_blank&quot;>1316820025</a>, <a href=&quot;https://www.openstreetmap.org/way/1316820020&quot; target=&quot;_blank&quot;>1316820020</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>50.841262340196096</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>Elston Avenue Bikeway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_92f33ee1644f771f3f3a5b9782eecb61.setContent(html_b2b7600606fa0796a444661432be9cbc);
            
        

        poly_line_10b1392278454c5dade2fa5985689162.bindPopup(popup_92f33ee1644f771f3f3a5b9782eecb61)
        ;

        
    
    
            var poly_line_36dbd809935979d56dabd6dbe07b743c = L.polyline(
                [[41.9031261, -87.6578749], [41.9031715, -87.6578852], [41.9033192, -87.6580103], [41.9033511, -87.6580232], [41.9033703, -87.658024], [41.9034027, -87.6580101], [41.9034213, -87.6579861], [41.903467, -87.6578806]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c84651a6823297d941764d523f9fa047 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e06644833d74738c03461c926651267c = $(`<div id=&quot;html_e06644833d74738c03461c926651267c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280080 → 11751927284 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820026&quot; target=&quot;_blank&quot;>1316820026</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary_link</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>47.12611457297879</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_c84651a6823297d941764d523f9fa047.setContent(html_e06644833d74738c03461c926651267c);
            
        

        poly_line_36dbd809935979d56dabd6dbe07b743c.bindPopup(popup_c84651a6823297d941764d523f9fa047)
        ;

        
    
    
            var poly_line_04adf785cf62ef0ff20da8998d5280c0 = L.polyline(
                [[41.9034802, -87.6588746], [41.9034871, -87.658554], [41.9034896, -87.65844]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_d8038503e2801e26bc9bcdbbeceb046c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fa790d63e3b5520c5be10b99bf5d00d0 = $(`<div id=&quot;html_fa790d63e3b5520c5be10b99bf5d00d0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280090 → 12187280099 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820034&quot; target=&quot;_blank&quot;>1316820034</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>5</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>35.98236330407988</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_d8038503e2801e26bc9bcdbbeceb046c.setContent(html_fa790d63e3b5520c5be10b99bf5d00d0);
            
        

        poly_line_04adf785cf62ef0ff20da8998d5280c0.bindPopup(popup_d8038503e2801e26bc9bcdbbeceb046c)
        ;

        
    
    
            var poly_line_f79da6d3d437ab0e967caaadb8952d58 = L.polyline(
                [[41.9034802, -87.6588746], [41.9034763, -87.6590611], [41.9034708, -87.659321], [41.9034608, -87.6599663]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_338e10fc4b06299fc92b5cd78f02cb96 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0af115490dc562ed5223c47c5e1ccb9e = $(`<div id=&quot;html_0af115490dc562ed5223c47c5e1ccb9e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280090 → 5868632532 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/802966345&quot; target=&quot;_blank&quot;>802966345</a>, <a href=&quot;https://www.openstreetmap.org/way/1377429951&quot; target=&quot;_blank&quot;>1377429951</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>5</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>90.37467270697513</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_338e10fc4b06299fc92b5cd78f02cb96.setContent(html_0af115490dc562ed5223c47c5e1ccb9e);
            
        

        poly_line_f79da6d3d437ab0e967caaadb8952d58.bindPopup(popup_338e10fc4b06299fc92b5cd78f02cb96)
        ;

        
    
    
            var poly_line_36362e102ecc549f7851a37f36367a4e = L.polyline(
                [[41.9034896, -87.65844], [41.9034918, -87.6583384]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4f4ef80f78569e3d8eabfcae74d6216d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f2adf1dc45e9a110c7c5244f2f67044c = $(`<div id=&quot;html_f2adf1dc45e9a110c7c5244f2f67044c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280099 → 344357410 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820034&quot; target=&quot;_blank&quot;>1316820034</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>5</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>8.411898672351805</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_4f4ef80f78569e3d8eabfcae74d6216d.setContent(html_f2adf1dc45e9a110c7c5244f2f67044c);
            
        

        poly_line_36362e102ecc549f7851a37f36367a4e.bindPopup(popup_4f4ef80f78569e3d8eabfcae74d6216d)
        ;

        
    
    
            var poly_line_575cb5cba5ca324053717e6324a7f5fa = L.polyline(
                [[41.9034896, -87.65844], [41.9033673, -87.6583233], [41.9031934, -87.6581403], [41.9031313, -87.6580795]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_33f9e86d897da4a9c7715ec851879cb3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_82dfa2737135f3f760fb8b2fcbda3780 = $(`<div id=&quot;html_82dfa2737135f3f760fb8b2fcbda3780&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280099 → 12187280069 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820021&quot; target=&quot;_blank&quot;>1316820021</a>, <a href=&quot;https://www.openstreetmap.org/way/1316820029&quot; target=&quot;_blank&quot;>1316820029</a>, <a href=&quot;https://www.openstreetmap.org/way/1316820022&quot; target=&quot;_blank&quot;>1316820022</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>49.78564867677412</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>Elston Avenue Bikeway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_33f9e86d897da4a9c7715ec851879cb3.setContent(html_82dfa2737135f3f760fb8b2fcbda3780);
            
        

        poly_line_575cb5cba5ca324053717e6324a7f5fa.bindPopup(popup_33f9e86d897da4a9c7715ec851879cb3)
        ;

        
    
    
            var poly_line_66825df6c4f6a1ef8ca60bedaefc18f5 = L.polyline(
                [[41.9034896, -87.65844], [41.9034871, -87.658554], [41.9034802, -87.6588746]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a99d8436a35f72a43cfa6f645905d12e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3533a9ac4f8fb39503fda0d01c0232d7 = $(`<div id=&quot;html_3533a9ac4f8fb39503fda0d01c0232d7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280099 → 12187280090 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820034&quot; target=&quot;_blank&quot;>1316820034</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>lanes</td><td style='padding:2px 6px;'>5</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>35.98236330407988</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Division Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_a99d8436a35f72a43cfa6f645905d12e.setContent(html_3533a9ac4f8fb39503fda0d01c0232d7);
            
        

        poly_line_66825df6c4f6a1ef8ca60bedaefc18f5.bindPopup(popup_a99d8436a35f72a43cfa6f645905d12e)
        ;

        
    
    
            var poly_line_7c27d05d80b1de00be75d1e2d92433ae = L.polyline(
                [[41.8988152, -87.6564844], [41.898815, -87.6565055], [41.8988148, -87.6565443]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5e4ae8f6f4f88c24c8bf4138a2502210 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7ccbf37a5653cd965259fa75ac7f38c5 = $(`<div id=&quot;html_7ccbf37a5653cd965259fa75ac7f38c5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280166 → 12187280168 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820055&quot; target=&quot;_blank&quot;>1316820055</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>4.957861303025013</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_5e4ae8f6f4f88c24c8bf4138a2502210.setContent(html_7ccbf37a5653cd965259fa75ac7f38c5);
            
        

        poly_line_7c27d05d80b1de00be75d1e2d92433ae.bindPopup(popup_5e4ae8f6f4f88c24c8bf4138a2502210)
        ;

        
    
    
            var poly_line_aeff796c76151543d2bf391fd703b07e = L.polyline(
                [[41.8988145, -87.6566125], [41.898885, -87.6566142]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_996f1c1d46e6dc8dbeaee9146baf8b5a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_880b303bd63f6ef536b7b45e15b815fc = $(`<div id=&quot;html_880b303bd63f6ef536b7b45e15b815fc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280167 → 10255086916 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1124448280&quot; target=&quot;_blank&quot;>1124448280</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.840515969649683</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_996f1c1d46e6dc8dbeaee9146baf8b5a.setContent(html_880b303bd63f6ef536b7b45e15b815fc);
            
        

        poly_line_aeff796c76151543d2bf391fd703b07e.bindPopup(popup_996f1c1d46e6dc8dbeaee9146baf8b5a)
        ;

        
    
    
            var poly_line_bd9336357a2c2a027547f7848a87d7bf = L.polyline(
                [[41.8988145, -87.6566125], [41.8987223, -87.6566103]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_860e12ae3ab81c8e46ab8f56666ee942 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2eb8e2dcf1daedbf8f0dbb0a6115a5ec = $(`<div id=&quot;html_2eb8e2dcf1daedbf8f0dbb0a6115a5ec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280167 → 10282528013 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1124448280&quot; target=&quot;_blank&quot;>1124448280</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>10.253803540420488</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North Elston Avenue</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_860e12ae3ab81c8e46ab8f56666ee942.setContent(html_2eb8e2dcf1daedbf8f0dbb0a6115a5ec);
            
        

        poly_line_bd9336357a2c2a027547f7848a87d7bf.bindPopup(popup_860e12ae3ab81c8e46ab8f56666ee942)
        ;

        
    
    
            var poly_line_1b12c2917c065cb5b02fcc682125db6c = L.polyline(
                [[41.8988145, -87.6566125], [41.8988148, -87.6565443]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_22ca414fc79771e60fb1c7b697026632 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_02da6eb792c3eb866306121d95ee89c0 = $(`<div id=&quot;html_02da6eb792c3eb866306121d95ee89c0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280167 → 12187280168 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820055&quot; target=&quot;_blank&quot;>1316820055</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>5.644693461580996</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_22ca414fc79771e60fb1c7b697026632.setContent(html_02da6eb792c3eb866306121d95ee89c0);
            
        

        poly_line_1b12c2917c065cb5b02fcc682125db6c.bindPopup(popup_22ca414fc79771e60fb1c7b697026632)
        ;

        
    
    
            var poly_line_d6b645b2a840cff41ac805a0d1b99ff4 = L.polyline(
                [[41.8988148, -87.6565443], [41.8988145, -87.6566125]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_72db40398fe59b1a8e885e0076a43cfa = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b5681c4cf8ebc03fea73ad5682c7c855 = $(`<div id=&quot;html_b5681c4cf8ebc03fea73ad5682c7c855&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280168 → 12187280167 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820055&quot; target=&quot;_blank&quot;>1316820055</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>5.644693461580996</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_72db40398fe59b1a8e885e0076a43cfa.setContent(html_b5681c4cf8ebc03fea73ad5682c7c855);
            
        

        poly_line_d6b645b2a840cff41ac805a0d1b99ff4.bindPopup(popup_72db40398fe59b1a8e885e0076a43cfa)
        ;

        
    
    
            var poly_line_cf906d5ed2ff10525dd56abeb3151c4b = L.polyline(
                [[41.8988148, -87.6565443], [41.8988728, -87.6565458], [41.8994358, -87.6565605], [41.8997744, -87.656564], [41.8997978, -87.6565648], [41.8998489, -87.6565694]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_8d704cb26efccd395da4835f6ab7d46d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_2e0d4113c38ded396239dba4f805c5be = $(`<div id=&quot;html_2e0d4113c38ded396239dba4f805c5be&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280168 → 11967979302 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820048&quot; target=&quot;_blank&quot;>1316820048</a>, <a href=&quot;https://www.openstreetmap.org/way/1316820054&quot; target=&quot;_blank&quot;>1316820054</a>, <a href=&quot;https://www.openstreetmap.org/way/1316820047&quot; target=&quot;_blank&quot;>1316820047</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>115.01454888995835</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>Elston Avenue Bikeway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_8d704cb26efccd395da4835f6ab7d46d.setContent(html_2e0d4113c38ded396239dba4f805c5be);
            
        

        poly_line_cf906d5ed2ff10525dd56abeb3151c4b.bindPopup(popup_8d704cb26efccd395da4835f6ab7d46d)
        ;

        
    
    
            var poly_line_8c6c48f786a38cfe255a841b21a970c7 = L.polyline(
                [[41.8988148, -87.6565443], [41.898815, -87.6565055], [41.8988152, -87.6564844]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a9ce4fbc352ec0c08c5c984c4bc1a988 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0bfec844f82ccf0d2bc6460ba6e7ccbf = $(`<div id=&quot;html_0bfec844f82ccf0d2bc6460ba6e7ccbf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280168 → 12187280166 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820055&quot; target=&quot;_blank&quot;>1316820055</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>4.957861303025013</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_a9ce4fbc352ec0c08c5c984c4bc1a988.setContent(html_0bfec844f82ccf0d2bc6460ba6e7ccbf);
            
        

        poly_line_8c6c48f786a38cfe255a841b21a970c7.bindPopup(popup_a9ce4fbc352ec0c08c5c984c4bc1a988)
        ;

        
    
    
            var poly_line_a1194be9fd7d01f87967d9bd249a1117 = L.polyline(
                [[41.90395, -87.6589318], [41.903997, -87.6588925]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f9a983a437d702bc638d024fa852e4ac = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d117127c17a0d29e363bc48655d4792d = $(`<div id=&quot;html_d117127c17a0d29e363bc48655d4792d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280172 → 4337248984 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1292541141&quot; target=&quot;_blank&quot;>1292541141</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>6.155569897712518</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_f9a983a437d702bc638d024fa852e4ac.setContent(html_d117127c17a0d29e363bc48655d4792d);
            
        

        poly_line_a1194be9fd7d01f87967d9bd249a1117.bindPopup(popup_f9a983a437d702bc638d024fa852e4ac)
        ;

        
    
    
            var poly_line_2e8267434e6121172a02b2aa292b05d3 = L.polyline(
                [[41.90395, -87.6589318], [41.903908, -87.6588863]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7f0386b64be382a87710431d7db0ae7f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_cf4e3972b50d0fcb27498668acbfc042 = $(`<div id=&quot;html_cf4e3972b50d0fcb27498668acbfc042&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280172 → 12187280173 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820016&quot; target=&quot;_blank&quot;>1316820016</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>5.99915428116017</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>Elston Avenue Bikeway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_7f0386b64be382a87710431d7db0ae7f.setContent(html_cf4e3972b50d0fcb27498668acbfc042);
            
        

        poly_line_2e8267434e6121172a02b2aa292b05d3.bindPopup(popup_7f0386b64be382a87710431d7db0ae7f)
        ;

        
    
    
            var poly_line_1d2f0b4f371a1965d73f45a5e5fbf72a = L.polyline(
                [[41.90395, -87.6589318], [41.9039071, -87.6589761], [41.9038614, -87.659116], [41.9037782, -87.659306], [41.9037508, -87.6593374], [41.9037383, -87.6599765]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2bb5dce6f7fabab57f8ccee1f8f2d8e2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_eb8011bed9a6ed112b4dd10835f4fa9b = $(`<div id=&quot;html_eb8011bed9a6ed112b4dd10835f4fa9b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280172 → 5493211400 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1292541141&quot; target=&quot;_blank&quot;>1292541141</a>, <a href=&quot;https://www.openstreetmap.org/way/571608519&quot; target=&quot;_blank&quot;>571608519</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>93.8181983227947</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_2bb5dce6f7fabab57f8ccee1f8f2d8e2.setContent(html_eb8011bed9a6ed112b4dd10835f4fa9b);
            
        

        poly_line_1d2f0b4f371a1965d73f45a5e5fbf72a.bindPopup(popup_2bb5dce6f7fabab57f8ccee1f8f2d8e2)
        ;

        
    
    
            var poly_line_3da9fa3f4757e40af652a393948e2b14 = L.polyline(
                [[41.903908, -87.6588863], [41.9038829, -87.658859], [41.9036559, -87.658598], [41.9035849, -87.6585313], [41.9034896, -87.65844]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c803eed908f2250ac95b4f6018e24447 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fee5431430d297b612a032201d1fb27f = $(`<div id=&quot;html_fee5431430d297b612a032201d1fb27f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280173 → 12187280099 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820016&quot; target=&quot;_blank&quot;>1316820016</a>, <a href=&quot;https://www.openstreetmap.org/way/1316820029&quot; target=&quot;_blank&quot;>1316820029</a>, <a href=&quot;https://www.openstreetmap.org/way/1316820030&quot; target=&quot;_blank&quot;>1316820030</a>, <a href=&quot;https://www.openstreetmap.org/way/1316820031&quot; target=&quot;_blank&quot;>1316820031</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>cycleway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>59.46068877916355</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>Elston Avenue Bikeway</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_c803eed908f2250ac95b4f6018e24447.setContent(html_fee5431430d297b612a032201d1fb27f);
            
        

        poly_line_3da9fa3f4757e40af652a393948e2b14.bindPopup(popup_c803eed908f2250ac95b4f6018e24447)
        ;

        
    
    
            var poly_line_1557915037193bc4a7877e13a454dec5 = L.polyline(
                [[41.903908, -87.6588863], [41.9038786, -87.6588843], [41.903728, -87.6587257], [41.9036963, -87.6587118], [41.9036615, -87.6587076], [41.9036354, -87.6587134], [41.9036195, -87.658731], [41.9034802, -87.6588746]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c01a02323ba2a1a3954de831e7bbb887 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a91e9943eda98949273bb9a0faee6b09 = $(`<div id=&quot;html_a91e9943eda98949273bb9a0faee6b09&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187280173 → 12187280090 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316820028&quot; target=&quot;_blank&quot;>1316820028</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>secondary_link</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>56.89889158508591</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_c01a02323ba2a1a3954de831e7bbb887.setContent(html_a91e9943eda98949273bb9a0faee6b09);
            
        

        poly_line_1557915037193bc4a7877e13a454dec5.bindPopup(popup_c01a02323ba2a1a3954de831e7bbb887)
        ;

        
    
    
            var poly_line_856f6c689fbe3acdb85c78a22ba702f5 = L.polyline(
                [[41.9056719, -87.6593406], [41.9056699, -87.659357], [41.9056611, -87.6594312]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a7c678ba40f0c83cdac1cd92be985641 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6644750e23cf16f6ae05b7e43b69267e = $(`<div id=&quot;html_6644750e23cf16f6ae05b7e43b69267e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187320343 → 12187280009 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316825482&quot; target=&quot;_blank&quot;>1316825482</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.5933095213345405</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_a7c678ba40f0c83cdac1cd92be985641.setContent(html_6644750e23cf16f6ae05b7e43b69267e);
            
        

        poly_line_856f6c689fbe3acdb85c78a22ba702f5.bindPopup(popup_a7c678ba40f0c83cdac1cd92be985641)
        ;

        
    
    
            var poly_line_437f6433b0c66677a229eb404855c3b2 = L.polyline(
                [[41.902888, -87.6574412], [41.9030597, -87.6575725], [41.9030503, -87.657743], [41.9030424, -87.6577977]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_630e966d8ebe9c206a8b5e4ca5052673 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3907758c9fca973cb3ecddaa445d6284 = $(`<div id=&quot;html_3907758c9fca973cb3ecddaa445d6284&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12187383255 → 11967979300 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/904368559&quot; target=&quot;_blank&quot;>904368559</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>40.72854875453965</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_630e966d8ebe9c206a8b5e4ca5052673.setContent(html_3907758c9fca973cb3ecddaa445d6284);
            
        

        poly_line_437f6433b0c66677a229eb404855c3b2.bindPopup(popup_630e966d8ebe9c206a8b5e4ca5052673)
        ;

        
    
    
            var poly_line_ba6bdeab574e4ca38166fd4bdb6ea2ef = L.polyline(
                [[41.899239, -87.6487556], [41.8992311, -87.6487401]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1d8009427b42241c81c7f00ce70bca44 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_1baeda4f3c3dfc345ffdf053b7df5a8f = $(`<div id=&quot;html_1baeda4f3c3dfc345ffdf053b7df5a8f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12191955738 → 4267128729 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/427504313&quot; target=&quot;_blank&quot;>427504313</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>1.554790448532081</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_1d8009427b42241c81c7f00ce70bca44.setContent(html_1baeda4f3c3dfc345ffdf053b7df5a8f);
            
        

        poly_line_ba6bdeab574e4ca38166fd4bdb6ea2ef.bindPopup(popup_1d8009427b42241c81c7f00ce70bca44)
        ;

        
    
    
            var poly_line_ae114d7f0589900c834f76d298f2aafc = L.polyline(
                [[41.899239, -87.6487556], [41.8990834, -87.6488965]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_662b5c2751954869c759d3d435bd28dd = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_49b2608f470a847228029f6fabd49fc2 = $(`<div id=&quot;html_49b2608f470a847228029f6fabd49fc2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12191955738 → 4267128726 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317315814&quot; target=&quot;_blank&quot;>1317315814</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>20.86503949038454</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_662b5c2751954869c759d3d435bd28dd.setContent(html_49b2608f470a847228029f6fabd49fc2);
            
        

        poly_line_ae114d7f0589900c834f76d298f2aafc.bindPopup(popup_662b5c2751954869c759d3d435bd28dd)
        ;

        
    
    
            var poly_line_e4d5c53c71256c94378ec91427f5843f = L.polyline(
                [[41.899239, -87.6487556], [41.8992685, -87.6488203], [41.8992882, -87.6488596], [41.8993318, -87.6489371], [41.8992019, -87.6490603]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b484835793d8aa635e7518e2b310e3e7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_baca31e84874776492ac3a2a606fa8dc = $(`<div id=&quot;html_baca31e84874776492ac3a2a606fa8dc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12191955738 → 4267128730 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/427504313&quot; target=&quot;_blank&quot;>427504313</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>35.92224999065278</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_b484835793d8aa635e7518e2b310e3e7.setContent(html_baca31e84874776492ac3a2a606fa8dc);
            
        

        poly_line_e4d5c53c71256c94378ec91427f5843f.bindPopup(popup_b484835793d8aa635e7518e2b310e3e7)
        ;

        
    
    
            var poly_line_266ce1665af70c10a3e745de968e7d54 = L.polyline(
                [[41.8994943, -87.6490616], [41.8995062, -87.6490502], [41.8995161, -87.6490407], [41.8995778, -87.6489814]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f33cdc4e60287a6af000fece670b467e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c0bcaa6c941be4ec5e778b9cf71482c4 = $(`<div id=&quot;html_c0bcaa6c941be4ec5e778b9cf71482c4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12191955751 → 12191955752 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317315818&quot; target=&quot;_blank&quot;>1317315818</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>11.413433624478513</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_f33cdc4e60287a6af000fece670b467e.setContent(html_c0bcaa6c941be4ec5e778b9cf71482c4);
            
        

        poly_line_266ce1665af70c10a3e745de968e7d54.bindPopup(popup_f33cdc4e60287a6af000fece670b467e)
        ;

        
    
    
            var poly_line_90b6effe161cda525422e537cd8cb31d = L.polyline(
                [[41.8995778, -87.6489814], [41.8999002, -87.6495999]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_bd771b2063722cc1a2488d2f3ece6050 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ff9eb28cf3aa388c5c3245ac3aa80a67 = $(`<div id=&quot;html_ff9eb28cf3aa388c5c3245ac3aa80a67&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12191955752 → 12177075887 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24096218&quot; target=&quot;_blank&quot;>24096218</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>62.49438478379552</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_bd771b2063722cc1a2488d2f3ece6050.setContent(html_ff9eb28cf3aa388c5c3245ac3aa80a67);
            
        

        poly_line_90b6effe161cda525422e537cd8cb31d.bindPopup(popup_bd771b2063722cc1a2488d2f3ece6050)
        ;

        
    
    
            var poly_line_e0963a35bdf800a5e963ec766c109b8c = L.polyline(
                [[41.8995778, -87.6489814], [41.899546, -87.6489203]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_9fcbfeefccef9f2e63e3d6705e4e0ba1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f2d4dac371b332e5338e0d754750157d = $(`<div id=&quot;html_f2d4dac371b332e5338e0d754750157d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12191955752 → 2168537771 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24096218&quot; target=&quot;_blank&quot;>24096218</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>6.170541233526667</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_9fcbfeefccef9f2e63e3d6705e4e0ba1.setContent(html_f2d4dac371b332e5338e0d754750157d);
            
        

        poly_line_e0963a35bdf800a5e963ec766c109b8c.bindPopup(popup_9fcbfeefccef9f2e63e3d6705e4e0ba1)
        ;

        
    
    
            var poly_line_c969629c5b451e6163d06db1af08e9d1 = L.polyline(
                [[41.8995778, -87.6489814], [41.8995161, -87.6490407], [41.8995062, -87.6490502], [41.8994943, -87.6490616]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1df2b9da885760da0a5a52524191ed87 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_641ccdc6d42b393658a554428fd6586e = $(`<div id=&quot;html_641ccdc6d42b393658a554428fd6586e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12191955752 → 12191955751 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317315818&quot; target=&quot;_blank&quot;>1317315818</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>11.413433624478513</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_1df2b9da885760da0a5a52524191ed87.setContent(html_641ccdc6d42b393658a554428fd6586e);
            
        

        poly_line_c969629c5b451e6163d06db1af08e9d1.bindPopup(popup_1df2b9da885760da0a5a52524191ed87)
        ;

        
    
    
            var poly_line_8cad796efc7d91797d9359299958b07e = L.polyline(
                [[41.8999916, -87.6511596], [41.8999572, -87.6511906], [41.8999518, -87.6511959]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#dcbeff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#dcbeff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a58c08282a8e44e82b10b971c14a5e6f = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9b672d24bc923c29bd7ffc438de23c75 = $(`<div id=&quot;html_9b672d24bc923c29bd7ffc438de23c75&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12191955758 → 12191955781 (key 0)<br>                 <b>Component</b> 10<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317315826&quot; target=&quot;_blank&quot;>1317315826</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>path</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>5.349495832772784</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_a58c08282a8e44e82b10b971c14a5e6f.setContent(html_9b672d24bc923c29bd7ffc438de23c75);
            
        

        poly_line_8cad796efc7d91797d9359299958b07e.bindPopup(popup_a58c08282a8e44e82b10b971c14a5e6f)
        ;

        
    
    
            var poly_line_944a2ff5841e0029f47ac4f63acb176b = L.polyline(
                [[41.8999518, -87.6511959], [41.8999572, -87.6511906], [41.8999916, -87.6511596]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#dcbeff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#dcbeff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0dbdb00816064b1c9d94b4e20a191467 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_cabd780b941fb3ceec41809f13d191dd = $(`<div id=&quot;html_cabd780b941fb3ceec41809f13d191dd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12191955781 → 12191955758 (key 0)<br>                 <b>Component</b> 10<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317315826&quot; target=&quot;_blank&quot;>1317315826</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>path</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>5.349495832772784</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_0dbdb00816064b1c9d94b4e20a191467.setContent(html_cabd780b941fb3ceec41809f13d191dd);
            
        

        poly_line_944a2ff5841e0029f47ac4f63acb176b.bindPopup(popup_0dbdb00816064b1c9d94b4e20a191467)
        ;

        
    
    
            var poly_line_fb33ba684bb2e4c4b9432c827ad94209 = L.polyline(
                [[41.9010935, -87.6521987], [41.901115, -87.6521903], [41.9012123, -87.6521525]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_67c3a1785160c9b50e408f73cc41f93c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_6e2b68d2a6fd97044d31a41773341fbe = $(`<div id=&quot;html_6e2b68d2a6fd97044d31a41773341fbe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12192087377 → 12177117285 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317315889&quot; target=&quot;_blank&quot;>1317315889</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>13.752220992574687</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_67c3a1785160c9b50e408f73cc41f93c.setContent(html_6e2b68d2a6fd97044d31a41773341fbe);
            
        

        poly_line_fb33ba684bb2e4c4b9432c827ad94209.bindPopup(popup_67c3a1785160c9b50e408f73cc41f93c)
        ;

        
    
    
            var poly_line_ac25274d0048ed51a392d0d2a5da5576 = L.polyline(
                [[41.9023099, -87.6547899], [41.9023816, -87.6546195], [41.9024142, -87.6545435]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_16ddd0e4ad7d3173cb1c3aff960c8e22 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_041b6c92822bc8eadc7eda413327cc13 = $(`<div id=&quot;html_041b6c92822bc8eadc7eda413327cc13&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12192087392 → 12192087393 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317315897&quot; target=&quot;_blank&quot;>1317315897</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>23.459689547031704</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_16ddd0e4ad7d3173cb1c3aff960c8e22.setContent(html_041b6c92822bc8eadc7eda413327cc13);
            
        

        poly_line_ac25274d0048ed51a392d0d2a5da5576.bindPopup(popup_16ddd0e4ad7d3173cb1c3aff960c8e22)
        ;

        
    
    
            var poly_line_ea1cc0943397543b6cdaa7b8281529c7 = L.polyline(
                [[41.9024142, -87.6545435], [41.902463, -87.6545828]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_883508324e5b9a744ab86bfc9223a7ec = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9366b2e1c38d7258e9e55b90530b29e5 = $(`<div id=&quot;html_9366b2e1c38d7258e9e55b90530b29e5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12192087393 → 6776163347 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273623183&quot; target=&quot;_blank&quot;>273623183</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>6.326425316130372</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_883508324e5b9a744ab86bfc9223a7ec.setContent(html_9366b2e1c38d7258e9e55b90530b29e5);
            
        

        poly_line_ea1cc0943397543b6cdaa7b8281529c7.bindPopup(popup_883508324e5b9a744ab86bfc9223a7ec)
        ;

        
    
    
            var poly_line_da2ecc8d8ccb07c53e98c4dc74bc12fa = L.polyline(
                [[41.9024142, -87.6545435], [41.9023484, -87.6544905]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_929885e9e95acad0c8b4a7b79f31479e = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d6866753fb4aa2bce8c102d39bfe9301 = $(`<div id=&quot;html_d6866753fb4aa2bce8c102d39bfe9301&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12192087393 → 12192087396 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273623183&quot; target=&quot;_blank&quot;>273623183</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>8.530706108520434</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_929885e9e95acad0c8b4a7b79f31479e.setContent(html_d6866753fb4aa2bce8c102d39bfe9301);
            
        

        poly_line_da2ecc8d8ccb07c53e98c4dc74bc12fa.bindPopup(popup_929885e9e95acad0c8b4a7b79f31479e)
        ;

        
    
    
            var poly_line_79fcc1ff7f63f7c31a1d7e2ff591ffef = L.polyline(
                [[41.9024142, -87.6545435], [41.9023816, -87.6546195], [41.9023099, -87.6547899]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ad48759d93961c818ed9164f098fa49a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7394cea4c0b1b6744f3493f18a0bfb1d = $(`<div id=&quot;html_7394cea4c0b1b6744f3493f18a0bfb1d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12192087393 → 12192087392 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317315897&quot; target=&quot;_blank&quot;>1317315897</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>23.459689547031704</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_ad48759d93961c818ed9164f098fa49a.setContent(html_7394cea4c0b1b6744f3493f18a0bfb1d);
            
        

        poly_line_79fcc1ff7f63f7c31a1d7e2ff591ffef.bindPopup(popup_ad48759d93961c818ed9164f098fa49a)
        ;

        
    
    
            var poly_line_e3ca5326fd2ad0563c250ab016c29f97 = L.polyline(
                [[41.9022419, -87.65474], [41.9023158, -87.6545664], [41.9023484, -87.6544905]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e287c6d2b67d0b6aad1dafbc663ef382 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5aee71a21a6f580744747c005eeb1f0a = $(`<div id=&quot;html_5aee71a21a6f580744747c005eeb1f0a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12192087395 → 12192087396 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317315898&quot; target=&quot;_blank&quot;>1317315898</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>23.803679428675284</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_e287c6d2b67d0b6aad1dafbc663ef382.setContent(html_5aee71a21a6f580744747c005eeb1f0a);
            
        

        poly_line_e3ca5326fd2ad0563c250ab016c29f97.bindPopup(popup_e287c6d2b67d0b6aad1dafbc663ef382)
        ;

        
    
    
            var poly_line_b59f10f1c86c543816495f2f39a74d98 = L.polyline(
                [[41.9023484, -87.6544905], [41.9024142, -87.6545435]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_03f8b22b558f95156d57a3e1e3a8c7d0 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a068c45997497592a1f864965656114a = $(`<div id=&quot;html_a068c45997497592a1f864965656114a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12192087396 → 12192087393 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273623183&quot; target=&quot;_blank&quot;>273623183</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>8.530706108520434</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_03f8b22b558f95156d57a3e1e3a8c7d0.setContent(html_a068c45997497592a1f864965656114a);
            
        

        poly_line_b59f10f1c86c543816495f2f39a74d98.bindPopup(popup_03f8b22b558f95156d57a3e1e3a8c7d0)
        ;

        
    
    
            var poly_line_99039fb6eeb86dc95802986434418944 = L.polyline(
                [[41.9023484, -87.6544905], [41.902237, -87.6544007], [41.9020616, -87.6542594]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_cea1279920eee8f94de0a086308b2997 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f3ca659add3b61357a474c2e6cfb0b9e = $(`<div id=&quot;html_f3ca659add3b61357a474c2e6cfb0b9e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12192087396 → 5114880460 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273623183&quot; target=&quot;_blank&quot;>273623183</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>37.18636521258482</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_cea1279920eee8f94de0a086308b2997.setContent(html_f3ca659add3b61357a474c2e6cfb0b9e);
            
        

        poly_line_99039fb6eeb86dc95802986434418944.bindPopup(popup_cea1279920eee8f94de0a086308b2997)
        ;

        
    
    
            var poly_line_6d86d859419042df5ea456af9ded7a6e = L.polyline(
                [[41.9023484, -87.6544905], [41.9023158, -87.6545664], [41.9022419, -87.65474]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6d04288af929ce00d3950ec50da285f2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_de92823797250a63c63bc063d66f2aab = $(`<div id=&quot;html_de92823797250a63c63bc063d66f2aab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12192087396 → 12192087395 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317315898&quot; target=&quot;_blank&quot;>1317315898</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>23.803679428675284</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_6d04288af929ce00d3950ec50da285f2.setContent(html_de92823797250a63c63bc063d66f2aab);
            
        

        poly_line_6d86d859419042df5ea456af9ded7a6e.bindPopup(popup_6d04288af929ce00d3950ec50da285f2)
        ;

        
    
    
            var poly_line_a0a2df3fec22a5d7cdc6a60269e013a7 = L.polyline(
                [[41.9019042, -87.6544981], [41.9019914, -87.6543018], [41.9020245, -87.6542288]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_6157404240a47f95443f03d1f77d6346 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_fbe276efc1e8da08d8636f493e715c31 = $(`<div id=&quot;html_fbe276efc1e8da08d8636f493e715c31&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12192087401 → 12192087402 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317315901&quot; target=&quot;_blank&quot;>1317315901</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>25.993963529431728</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_6157404240a47f95443f03d1f77d6346.setContent(html_fbe276efc1e8da08d8636f493e715c31);
            
        

        poly_line_a0a2df3fec22a5d7cdc6a60269e013a7.bindPopup(popup_6157404240a47f95443f03d1f77d6346)
        ;

        
    
    
            var poly_line_a6df8272f3e8e386cb9ef9fe4ee08707 = L.polyline(
                [[41.9020245, -87.6542288], [41.9020616, -87.6542594]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2b74c77cc7e65512e7b2bdd1cebb1ff8 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a9a452a190f5da83c829e2600f734ca9 = $(`<div id=&quot;html_a9a452a190f5da83c829e2600f734ca9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12192087402 → 5114880460 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273623183&quot; target=&quot;_blank&quot;>273623183</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>4.840652841348101</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_2b74c77cc7e65512e7b2bdd1cebb1ff8.setContent(html_a9a452a190f5da83c829e2600f734ca9);
            
        

        poly_line_a6df8272f3e8e386cb9ef9fe4ee08707.bindPopup(popup_2b74c77cc7e65512e7b2bdd1cebb1ff8)
        ;

        
    
    
            var poly_line_7961e3fc5a08c5932a0a453b5240bf5e = L.polyline(
                [[41.9020245, -87.6542288], [41.9018088, -87.6540507], [41.9015553, -87.6538445], [41.9015134, -87.6538104], [41.9014988, -87.6537301], [41.9012488, -87.6523535], [41.9012458, -87.6523368], [41.9012409, -87.6523098], [41.9012123, -87.6521525]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_df039c114c37bc1042ab3c0fb0420a6c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8fab7703aeebc5c1154b8b9f1aaf3f43 = $(`<div id=&quot;html_8fab7703aeebc5c1154b8b9f1aaf3f43&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12192087402 → 12177117285 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/683189248&quot; target=&quot;_blank&quot;>683189248</a>, <a href=&quot;https://www.openstreetmap.org/way/273623183&quot; target=&quot;_blank&quot;>273623183</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>207.78734615899157</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>[False, True]</td></tr>             </table>         </div>         </div>`)[0];
                popup_df039c114c37bc1042ab3c0fb0420a6c.setContent(html_8fab7703aeebc5c1154b8b9f1aaf3f43);
            
        

        poly_line_7961e3fc5a08c5932a0a453b5240bf5e.bindPopup(popup_df039c114c37bc1042ab3c0fb0420a6c)
        ;

        
    
    
            var poly_line_3a7a4d56ae6350d522d3f4867192d4d9 = L.polyline(
                [[41.9020245, -87.6542288], [41.9019914, -87.6543018], [41.9019042, -87.6544981]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1cec5a2cb3b6f79ec67ed98d603f2a4d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_a205f8214d0aa78af1d4156f0b1b79b4 = $(`<div id=&quot;html_a205f8214d0aa78af1d4156f0b1b79b4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12192087402 → 12192087401 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317315901&quot; target=&quot;_blank&quot;>1317315901</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>25.993963529431728</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_1cec5a2cb3b6f79ec67ed98d603f2a4d.setContent(html_a205f8214d0aa78af1d4156f0b1b79b4);
            
        

        poly_line_3a7a4d56ae6350d522d3f4867192d4d9.bindPopup(popup_1cec5a2cb3b6f79ec67ed98d603f2a4d)
        ;

        
    
    
            var poly_line_33f2323a8edaa6f473f67f35f9c9e388 = L.polyline(
                [[41.9019678, -87.6559433], [41.9019742, -87.6559227], [41.901994, -87.6558584], [41.9020475, -87.6556762], [41.9020857, -87.6556197]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2394dc290acdf28d49b85292e24ff432 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0ebe2036a234bbea7b74e2421faab8f7 = $(`<div id=&quot;html_0ebe2036a234bbea7b74e2421faab8f7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12192087469 → 5493314489 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317315917&quot; target=&quot;_blank&quot;>1317315917</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>30.13383782862274</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_2394dc290acdf28d49b85292e24ff432.setContent(html_0ebe2036a234bbea7b74e2421faab8f7);
            
        

        poly_line_33f2323a8edaa6f473f67f35f9c9e388.bindPopup(popup_2394dc290acdf28d49b85292e24ff432)
        ;

        
    
    
            var poly_line_4e34e9d99f9f05c8b80b366fcefe2225 = L.polyline(
                [[41.9027733, -87.6555299], [41.9027304, -87.6555111], [41.9023053, -87.655152]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fdd1d2a35952506671bb6983478b3606 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0c04278ffea1dd4dded136960d353c6d = $(`<div id=&quot;html_0c04278ffea1dd4dded136960d353c6d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12192087492 → 12192087494 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317315925&quot; target=&quot;_blank&quot;>1317315925</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>60.85305215327743</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_fdd1d2a35952506671bb6983478b3606.setContent(html_0c04278ffea1dd4dded136960d353c6d);
            
        

        poly_line_4e34e9d99f9f05c8b80b366fcefe2225.bindPopup(popup_fdd1d2a35952506671bb6983478b3606)
        ;

        
    
    
            var poly_line_ff7a55d82e989b0f92a26cbd1d6ef096 = L.polyline(
                [[41.9027733, -87.6555299], [41.9027599, -87.6556282], [41.9026921, -87.6558066]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a9efcfe380ff0cad9bc4dd03d5a419d2 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d2ffc9bd014a84a7c6d1e05d69a38130 = $(`<div id=&quot;html_d2ffc9bd014a84a7c6d1e05d69a38130&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12192087492 → 12192087506 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317315932&quot; target=&quot;_blank&quot;>1317315932</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>24.848507921003232</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_a9efcfe380ff0cad9bc4dd03d5a419d2.setContent(html_d2ffc9bd014a84a7c6d1e05d69a38130);
            
        

        poly_line_ff7a55d82e989b0f92a26cbd1d6ef096.bindPopup(popup_a9efcfe380ff0cad9bc4dd03d5a419d2)
        ;

        
    
    
            var poly_line_7bc3d6dd30ef7158a0337d8d8c3506bf = L.polyline(
                [[41.9023053, -87.655152], [41.9020857, -87.6556197]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_81d18da90fbee76a194326235c717968 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3c63e59efb2cdec3a674cb586789913c = $(`<div id=&quot;html_3c63e59efb2cdec3a674cb586789913c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12192087494 → 5493314489 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626389&quot; target=&quot;_blank&quot;>571626389</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>45.76586746007765</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_81d18da90fbee76a194326235c717968.setContent(html_3c63e59efb2cdec3a674cb586789913c);
            
        

        poly_line_7bc3d6dd30ef7158a0337d8d8c3506bf.bindPopup(popup_81d18da90fbee76a194326235c717968)
        ;

        
    
    
            var poly_line_e48206c235a726160e52ac5aa5687fd2 = L.polyline(
                [[41.9023053, -87.655152], [41.9023711, -87.6550118]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_83cd4208d49b439a50f1157b1a77496a = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_20ff04f42f3746b1c097ee2e4446c52e = $(`<div id=&quot;html_20ff04f42f3746b1c097ee2e4446c52e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12192087494 → 5493314607 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626389&quot; target=&quot;_blank&quot;>571626389</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>13.71729268316996</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_83cd4208d49b439a50f1157b1a77496a.setContent(html_20ff04f42f3746b1c097ee2e4446c52e);
            
        

        poly_line_e48206c235a726160e52ac5aa5687fd2.bindPopup(popup_83cd4208d49b439a50f1157b1a77496a)
        ;

        
    
    
            var poly_line_db22dd27e48712c82c1614184beccfd9 = L.polyline(
                [[41.9026921, -87.6558066], [41.9027599, -87.6556282], [41.9027733, -87.6555299]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_38d11bc585b76e54c3a59338a48b6262 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f271363d00fb277dab66a5f04e4d4273 = $(`<div id=&quot;html_f271363d00fb277dab66a5f04e4d4273&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12192087506 → 12192087492 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317315932&quot; target=&quot;_blank&quot;>1317315932</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>24.848507921003232</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_38d11bc585b76e54c3a59338a48b6262.setContent(html_f271363d00fb277dab66a5f04e4d4273);
            
        

        poly_line_db22dd27e48712c82c1614184beccfd9.bindPopup(popup_38d11bc585b76e54c3a59338a48b6262)
        ;

        
    
    
            var poly_line_afc5c59e7e2bb77cda6f0c311b74f28b = L.polyline(
                [[41.903008, -87.6552439], [41.9030274, -87.6551491], [41.9030461, -87.655057]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b313de5f50512ce27e69459841c87dd7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0ee1d5b3970c97f592cc6b80ef70749e = $(`<div id=&quot;html_0ee1d5b3970c97f592cc6b80ef70749e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12192087595 → 12192087596 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317315950&quot; target=&quot;_blank&quot;>1317315950</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>16.037514222607836</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_b313de5f50512ce27e69459841c87dd7.setContent(html_0ee1d5b3970c97f592cc6b80ef70749e);
            
        

        poly_line_afc5c59e7e2bb77cda6f0c311b74f28b.bindPopup(popup_b313de5f50512ce27e69459841c87dd7)
        ;

        
    
    
            var poly_line_c416a09240ddcd36aad1cc549bd1093b = L.polyline(
                [[41.9030461, -87.655057], [41.9031391, -87.6551326]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_60c7d80ceb456e4a2e886b5dbdc037eb = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_291bda1244cbc3ccbe12384dcf0aeb66 = $(`<div id=&quot;html_291bda1244cbc3ccbe12384dcf0aeb66&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12192087596 → 5493314600 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273623183&quot; target=&quot;_blank&quot;>273623183</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>12.086553142095907</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_60c7d80ceb456e4a2e886b5dbdc037eb.setContent(html_291bda1244cbc3ccbe12384dcf0aeb66);
            
        

        poly_line_c416a09240ddcd36aad1cc549bd1093b.bindPopup(popup_60c7d80ceb456e4a2e886b5dbdc037eb)
        ;

        
    
    
            var poly_line_35d628ce46dcda7fdf5e4e8e0c4fbaad = L.polyline(
                [[41.9030461, -87.655057], [41.9029782, -87.6550018]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_26e6da1b69e3abde7f900e74cd4017b3 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_592a8bbe0052591322327a0251b82ab2 = $(`<div id=&quot;html_592a8bbe0052591322327a0251b82ab2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12192087596 → 5493314609 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273623183&quot; target=&quot;_blank&quot;>273623183</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>8.824652242322697</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_26e6da1b69e3abde7f900e74cd4017b3.setContent(html_592a8bbe0052591322327a0251b82ab2);
            
        

        poly_line_35d628ce46dcda7fdf5e4e8e0c4fbaad.bindPopup(popup_26e6da1b69e3abde7f900e74cd4017b3)
        ;

        
    
    
            var poly_line_40de9f61ced7795a33e8e8aac86d2a6a = L.polyline(
                [[41.9030461, -87.655057], [41.9030274, -87.6551491], [41.903008, -87.6552439]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_22dcce9d29a594404257f1f43b3c6abb = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_40fc3602be2668da8e3a38a8da9268cb = $(`<div id=&quot;html_40fc3602be2668da8e3a38a8da9268cb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12192087596 → 12192087595 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317315950&quot; target=&quot;_blank&quot;>1317315950</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>16.037514222607836</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_22dcce9d29a594404257f1f43b3c6abb.setContent(html_40fc3602be2668da8e3a38a8da9268cb);
            
        

        poly_line_40de9f61ced7795a33e8e8aac86d2a6a.bindPopup(popup_22dcce9d29a594404257f1f43b3c6abb)
        ;

        
    
    
            var poly_line_beb6346755b22a80eb60f51bc417fd28 = L.polyline(
                [[41.903233, -87.6553987], [41.9032657, -87.6553153], [41.9032898, -87.6552536]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e8110fd9d664d0906f4c057061e3f7fe = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ff683cfee7b3d76b9f323bf3fa147215 = $(`<div id=&quot;html_ff683cfee7b3d76b9f323bf3fa147215&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12192087598 → 12192087599 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317315951&quot; target=&quot;_blank&quot;>1317315951</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>13.56806595333009</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_e8110fd9d664d0906f4c057061e3f7fe.setContent(html_ff683cfee7b3d76b9f323bf3fa147215);
            
        

        poly_line_beb6346755b22a80eb60f51bc417fd28.bindPopup(popup_e8110fd9d664d0906f4c057061e3f7fe)
        ;

        
    
    
            var poly_line_9ea589e31acff8e34da5f14836874c76 = L.polyline(
                [[41.9032898, -87.6552536], [41.9033305, -87.6552863]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b3083320687b02584038f02fea2cb9e1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_75d819c550b379299eee9fe1a955bf76 = $(`<div id=&quot;html_75d819c550b379299eee9fe1a955bf76&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12192087599 → 11751927229 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273623183&quot; target=&quot;_blank&quot;>273623183</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>5.273056700126758</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_b3083320687b02584038f02fea2cb9e1.setContent(html_75d819c550b379299eee9fe1a955bf76);
            
        

        poly_line_9ea589e31acff8e34da5f14836874c76.bindPopup(popup_b3083320687b02584038f02fea2cb9e1)
        ;

        
    
    
            var poly_line_199ed11aee1c6e5b287234ee17bc172e = L.polyline(
                [[41.9032898, -87.6552536], [41.9031391, -87.6551326]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b4dfa04c45e391cf72b3da665f047a84 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b42c7aca1717cd762414ae64b471b467 = $(`<div id=&quot;html_b42c7aca1717cd762414ae64b471b467&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12192087599 → 5493314600 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/273623183&quot; target=&quot;_blank&quot;>273623183</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.521240763687697</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_b4dfa04c45e391cf72b3da665f047a84.setContent(html_b42c7aca1717cd762414ae64b471b467);
            
        

        poly_line_199ed11aee1c6e5b287234ee17bc172e.bindPopup(popup_b4dfa04c45e391cf72b3da665f047a84)
        ;

        
    
    
            var poly_line_04c396674c12fb486a2c294631889b63 = L.polyline(
                [[41.9031247, -87.6483527], [41.9031234, -87.6485263]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_5a5f0761b56908901411b73360901865 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_b21fb0d2d01887a5cd9ea610e5990d4d = $(`<div id=&quot;html_b21fb0d2d01887a5cd9ea610e5990d4d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12193659506 → 12183238005 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316290209&quot; target=&quot;_blank&quot;>1316290209</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>14.367817285008618</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_5a5f0761b56908901411b73360901865.setContent(html_b21fb0d2d01887a5cd9ea610e5990d4d);
            
        

        poly_line_04c396674c12fb486a2c294631889b63.bindPopup(popup_5a5f0761b56908901411b73360901865)
        ;

        
    
    
            var poly_line_57752622c3616f129e65acef7610a5e3 = L.polyline(
                [[41.9031247, -87.6483527], [41.9029284, -87.6483796], [41.9031234, -87.6485263]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a11d794097517a012683b64b9ee3a6c4 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_729f04ab25111e2759de9dea048625cb = $(`<div id=&quot;html_729f04ab25111e2759de9dea048625cb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12193659506 → 12183238005 (key 1)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316290209&quot; target=&quot;_blank&quot;>1316290209</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>46.7914855181309</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_a11d794097517a012683b64b9ee3a6c4.setContent(html_729f04ab25111e2759de9dea048625cb);
            
        

        poly_line_57752622c3616f129e65acef7610a5e3.bindPopup(popup_a11d794097517a012683b64b9ee3a6c4)
        ;

        
    
    
            var poly_line_d2da21070fb7fdf18e2b32323585fd03 = L.polyline(
                [[41.9031247, -87.6483527], [41.903126, -87.6481717], [41.9031268, -87.648062]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e1c0eb7024dc2631f6b6bc2f666695ad = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_daa5f096a433aa66d2c4ddf098ddaa06 = $(`<div id=&quot;html_daa5f096a433aa66d2c4ddf098ddaa06&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12193659506 → 3683147341 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1316290209&quot; target=&quot;_blank&quot;>1316290209</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>24.059387750140324</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_e1c0eb7024dc2631f6b6bc2f666695ad.setContent(html_daa5f096a433aa66d2c4ddf098ddaa06);
            
        

        poly_line_d2da21070fb7fdf18e2b32323585fd03.bindPopup(popup_e1c0eb7024dc2631f6b6bc2f666695ad)
        ;

        
    
    
            var poly_line_9107a711e874ee6f18427859d0257da6 = L.polyline(
                [[41.9070502, -87.6567874], [41.90714, -87.6567891]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_04caa744ddb30464757d9b471a778c50 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d35e1d1f141a04e6e2c794453f600692 = $(`<div id=&quot;html_d35e1d1f141a04e6e2c794453f600692&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12193660139 → 12193660140 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317492097&quot; target=&quot;_blank&quot;>1317492097</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>9.986309506491224</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_04caa744ddb30464757d9b471a778c50.setContent(html_d35e1d1f141a04e6e2c794453f600692);
            
        

        poly_line_9107a711e874ee6f18427859d0257da6.bindPopup(popup_04caa744ddb30464757d9b471a778c50)
        ;

        
    
    
            var poly_line_104bd6821e61e990c10a3c1c6ea3774c = L.polyline(
                [[41.90714, -87.6567891], [41.9071416, -87.6566755]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b1460b864e9df7200ae075d7472efd42 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_ac1ff2fa65c32b0e13de0c3bc365aced = $(`<div id=&quot;html_ac1ff2fa65c32b0e13de0c3bc365aced&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12193660140 → 600507960 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/372671682&quot; target=&quot;_blank&quot;>372671682</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>9.40259783987503</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Blackhawk Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_b1460b864e9df7200ae075d7472efd42.setContent(html_ac1ff2fa65c32b0e13de0c3bc365aced);
            
        

        poly_line_104bd6821e61e990c10a3c1c6ea3774c.bindPopup(popup_b1460b864e9df7200ae075d7472efd42)
        ;

        
    
    
            var poly_line_8e538fccc7ecc17901a2608aa3efbc55 = L.polyline(
                [[41.90714, -87.6567891], [41.9070502, -87.6567874]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_26b842522c26c329b8841ce2109b43ab = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_543e8892740e0d15111a4c3168f298a6 = $(`<div id=&quot;html_543e8892740e0d15111a4c3168f298a6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12193660140 → 12193660139 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317492097&quot; target=&quot;_blank&quot;>1317492097</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>9.986309506491224</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_26b842522c26c329b8841ce2109b43ab.setContent(html_543e8892740e0d15111a4c3168f298a6);
            
        

        poly_line_8e538fccc7ecc17901a2608aa3efbc55.bindPopup(popup_26b842522c26c329b8841ce2109b43ab)
        ;

        
    
    
            var poly_line_a68beb125ef7607e968950cd3cfcdff2 = L.polyline(
                [[41.90714, -87.6567891], [41.9071297, -87.6575076], [41.9070469, -87.6575035], [41.9070401, -87.657504], [41.9065873, -87.6574942], [41.9065907, -87.6569922]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_663bea28ffa3ff08166f8a459787c3c5 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_da6defd20bbddf86d5944db2763b751c = $(`<div id=&quot;html_da6defd20bbddf86d5944db2763b751c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12193660140 → 12193692470 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/372671682&quot; target=&quot;_blank&quot;>372671682</a>, <a href=&quot;https://www.openstreetmap.org/way/571626331&quot; target=&quot;_blank&quot;>571626331</a>, <a href=&quot;https://www.openstreetmap.org/way/1317490578&quot; target=&quot;_blank&quot;>1317490578</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>['service', 'unclassified']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>161.34114262134378</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Blackhawk Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>['driveway', 'parking_aisle']</td></tr>             </table>         </div>         </div>`)[0];
                popup_663bea28ffa3ff08166f8a459787c3c5.setContent(html_da6defd20bbddf86d5944db2763b751c);
            
        

        poly_line_a68beb125ef7607e968950cd3cfcdff2.bindPopup(popup_663bea28ffa3ff08166f8a459787c3c5)
        ;

        
    
    
            var poly_line_f304b21c4facb0b7f12398720d997d33 = L.polyline(
                [[41.9063029, -87.6567502], [41.9064794, -87.6567569]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_7ee3f5eb456dc9425961eddee22c5f29 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_798ceb157ace3997bc2eaf7509a59fe3 = $(`<div id=&quot;html_798ceb157ace3997bc2eaf7509a59fe3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12193660141 → 5493314445 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317492098&quot; target=&quot;_blank&quot;>1317492098</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.63376290206101</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_7ee3f5eb456dc9425961eddee22c5f29.setContent(html_798ceb157ace3997bc2eaf7509a59fe3);
            
        

        poly_line_f304b21c4facb0b7f12398720d997d33.bindPopup(popup_7ee3f5eb456dc9425961eddee22c5f29)
        ;

        
    
    
            var poly_line_4b76060b2b8096ded11b29dbf7e88145 = L.polyline(
                [[41.9060254, -87.6567455], [41.9058505, -87.6567381]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_09ec0199b13a10320cee5cd1d02714b4 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f8fe75421ead58e1d0f4e0b8e59feccc = $(`<div id=&quot;html_f8fe75421ead58e1d0f4e0b8e59feccc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12193660145 → 12193660146 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317492100&quot; target=&quot;_blank&quot;>1317492100</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.45765955092889</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_09ec0199b13a10320cee5cd1d02714b4.setContent(html_f8fe75421ead58e1d0f4e0b8e59feccc);
            
        

        poly_line_4b76060b2b8096ded11b29dbf7e88145.bindPopup(popup_09ec0199b13a10320cee5cd1d02714b4)
        ;

        
    
    
            var poly_line_c067215f697475158df6f93f86e4183c = L.polyline(
                [[41.9058505, -87.6567381], [41.9060254, -87.6567455]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_ca2488260d1fcbf117a681797ba2faa1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_d576e94d56b7c4fa69531418abaefe47 = $(`<div id=&quot;html_d576e94d56b7c4fa69531418abaefe47&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12193660146 → 12193660145 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317492100&quot; target=&quot;_blank&quot;>1317492100</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.45765955092889</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_ca2488260d1fcbf117a681797ba2faa1.setContent(html_d576e94d56b7c4fa69531418abaefe47);
            
        

        poly_line_c067215f697475158df6f93f86e4183c.bindPopup(popup_ca2488260d1fcbf117a681797ba2faa1)
        ;

        
    
    
            var poly_line_52630140c60925578cdea71639b242df = L.polyline(
                [[41.9058505, -87.6567381], [41.9058513, -87.6566962], [41.9058512, -87.6566648], [41.905852, -87.6565728]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3db8de2ebe2115f8f47ef524be7c2a84 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0ebf38b8f46cc2008ea31b047fb883ba = $(`<div id=&quot;html_0ebf38b8f46cc2008ea31b047fb883ba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12193660146 → 5493314438 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626333&quot; target=&quot;_blank&quot;>571626333</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>13.681284253174436</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_3db8de2ebe2115f8f47ef524be7c2a84.setContent(html_0ebf38b8f46cc2008ea31b047fb883ba);
            
        

        poly_line_52630140c60925578cdea71639b242df.bindPopup(popup_3db8de2ebe2115f8f47ef524be7c2a84)
        ;

        
    
    
            var poly_line_56002d680646c94dda673a3dce0b138c = L.polyline(
                [[41.9061581, -87.656779], [41.9061593, -87.6566699], [41.9061601, -87.6565873]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_fedf02a60910d86759d1b945500746e1 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_5796f27d3670336ebcf4afc1b2aa6a5e = $(`<div id=&quot;html_5796f27d3670336ebcf4afc1b2aa6a5e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12193660153 → 12193660154 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317492102&quot; target=&quot;_blank&quot;>1317492102</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>15.865851899916292</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_fedf02a60910d86759d1b945500746e1.setContent(html_5796f27d3670336ebcf4afc1b2aa6a5e);
            
        

        poly_line_56002d680646c94dda673a3dce0b138c.bindPopup(popup_fedf02a60910d86759d1b945500746e1)
        ;

        
    
    
            var poly_line_9a4700689aa0bca5ed43f810a2bc6e66 = L.polyline(
                [[41.9061601, -87.6565873], [41.9063494, -87.6565956]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_0d52a49246c297109f978fd8ca11d561 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9c749710378695c63123dadcb1f3e2b4 = $(`<div id=&quot;html_9c749710378695c63123dadcb1f3e2b4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12193660154 → 13091885371 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/683189253&quot; target=&quot;_blank&quot;>683189253</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>21.060433269873112</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_0d52a49246c297109f978fd8ca11d561.setContent(html_9c749710378695c63123dadcb1f3e2b4);
            
        

        poly_line_9a4700689aa0bca5ed43f810a2bc6e66.bindPopup(popup_0d52a49246c297109f978fd8ca11d561)
        ;

        
    
    
            var poly_line_444bc323e41828028683f00fe2ff47d8 = L.polyline(
                [[41.9061601, -87.6565873], [41.9059358, -87.6565767]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1bf12333c75821d8080170125fa915e6 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_48afe20f7f96d1d29286eb9fd8447874 = $(`<div id=&quot;html_48afe20f7f96d1d29286eb9fd8447874&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12193660154 → 13091885376 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/683189253&quot; target=&quot;_blank&quot;>683189253</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>unclassified</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>24.956478935796852</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>North North Branch Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr>             </table>         </div>         </div>`)[0];
                popup_1bf12333c75821d8080170125fa915e6.setContent(html_48afe20f7f96d1d29286eb9fd8447874);
            
        

        poly_line_444bc323e41828028683f00fe2ff47d8.bindPopup(popup_1bf12333c75821d8080170125fa915e6)
        ;

        
    
    
            var poly_line_7d9b51e61edb8bd942ab5189f26b06cf = L.polyline(
                [[41.9061601, -87.6565873], [41.9061593, -87.6566699], [41.9061581, -87.656779]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_4b3b924de5c20d8a226c302237e318be = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_33404d035ddf58496b9288c2dc86d854 = $(`<div id=&quot;html_33404d035ddf58496b9288c2dc86d854&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12193660154 → 12193660153 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317492102&quot; target=&quot;_blank&quot;>1317492102</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>15.865851899916292</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_4b3b924de5c20d8a226c302237e318be.setContent(html_33404d035ddf58496b9288c2dc86d854);
            
        

        poly_line_7d9b51e61edb8bd942ab5189f26b06cf.bindPopup(popup_4b3b924de5c20d8a226c302237e318be)
        ;

        
    
    
            var poly_line_6857d192c8fdffb579205818c30eca25 = L.polyline(
                [[41.9065907, -87.6569922], [41.9065873, -87.6574942], [41.9070401, -87.657504], [41.9070469, -87.6575035], [41.9071297, -87.6575076], [41.90714, -87.6567891]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_76ab26b41ec3fe2ed48490f044d6efc7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7dce0c087da9abe9a27a58ad3fea7bc0 = $(`<div id=&quot;html_7dce0c087da9abe9a27a58ad3fea7bc0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12193692470 → 12193660140 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/372671682&quot; target=&quot;_blank&quot;>372671682</a>, <a href=&quot;https://www.openstreetmap.org/way/1317490578&quot; target=&quot;_blank&quot;>1317490578</a>, <a href=&quot;https://www.openstreetmap.org/way/571626331&quot; target=&quot;_blank&quot;>571626331</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>['service', 'unclassified']</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>161.34114262134375</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>name</td><td style='padding:2px 6px;'>West Blackhawk Street</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>['driveway', 'parking_aisle']</td></tr>             </table>         </div>         </div>`)[0];
                popup_76ab26b41ec3fe2ed48490f044d6efc7.setContent(html_7dce0c087da9abe9a27a58ad3fea7bc0);
            
        

        poly_line_6857d192c8fdffb579205818c30eca25.bindPopup(popup_76ab26b41ec3fe2ed48490f044d6efc7)
        ;

        
    
    
            var poly_line_5b3d99445f88d600d4af62294d65821e = L.polyline(
                [[41.9038135, -87.6566364], [41.9038139, -87.6565476]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_a3fe5d0ba84b07d27861e57b7aa9ee7c = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_8e8ab25790818e2bb20b07efc490fc24 = $(`<div id=&quot;html_8e8ab25790818e2bb20b07efc490fc24&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12193701719 → 5493314471 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/571626342&quot; target=&quot;_blank&quot;>571626342</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>7.349119735648578</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr>             </table>         </div>         </div>`)[0];
                popup_a3fe5d0ba84b07d27861e57b7aa9ee7c.setContent(html_8e8ab25790818e2bb20b07efc490fc24);
            
        

        poly_line_5b3d99445f88d600d4af62294d65821e.bindPopup(popup_a3fe5d0ba84b07d27861e57b7aa9ee7c)
        ;

        
    
    
            var poly_line_7e40b057f5dac7a7613540c5c9e5510c = L.polyline(
                [[41.9038135, -87.6566364], [41.9038105, -87.6567724]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_2620227fd0c05fd95e6eeb7860e2ed23 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_7ac866c761646e28c72a577bfbbc566f = $(`<div id=&quot;html_7ac866c761646e28c72a577bfbbc566f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12193701719 → 12193701784 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317492125&quot; target=&quot;_blank&quot;>1317492125</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>11.260145133464585</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_2620227fd0c05fd95e6eeb7860e2ed23.setContent(html_7ac866c761646e28c72a577bfbbc566f);
            
        

        poly_line_7e40b057f5dac7a7613540c5c9e5510c.bindPopup(popup_2620227fd0c05fd95e6eeb7860e2ed23)
        ;

        
    
    
            var poly_line_c28c1d08ed7729d99fcc924f8371cbd6 = L.polyline(
                [[41.9038135, -87.6566364], [41.9038687, -87.6566673], [41.9039692, -87.6567412], [41.9039686, -87.6568094], [41.903972, -87.6571174]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_c2461d4b3d93a5bf08db6174be09df01 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_c65eb2e407d32d7120300ec178a5d044 = $(`<div id=&quot;html_c65eb2e407d32d7120300ec178a5d044&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12193701719 → 5493314473 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317492110&quot; target=&quot;_blank&quot;>1317492110</a>, <a href=&quot;https://www.openstreetmap.org/way/571626342&quot; target=&quot;_blank&quot;>571626342</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>50.52555676286987</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_c2461d4b3d93a5bf08db6174be09df01.setContent(html_c65eb2e407d32d7120300ec178a5d044);
            
        

        poly_line_c28c1d08ed7729d99fcc924f8371cbd6.bindPopup(popup_c2461d4b3d93a5bf08db6174be09df01)
        ;

        
    
    
            var poly_line_4fdd6f45a310f4584470942b82103b45 = L.polyline(
                [[41.9036381, -87.6569953], [41.9038054, -87.6570006], [41.9038105, -87.6567724]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f8954668f09fe49d2796c389a4b33ee7 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_963868fb6b1c9c87f2ea7fa7addabce4 = $(`<div id=&quot;html_963868fb6b1c9c87f2ea7fa7addabce4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12193701782 → 12193701784 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317492125&quot; target=&quot;_blank&quot;>1317492125</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>37.5021895394775</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_f8954668f09fe49d2796c389a4b33ee7.setContent(html_963868fb6b1c9c87f2ea7fa7addabce4);
            
        

        poly_line_4fdd6f45a310f4584470942b82103b45.bindPopup(popup_f8954668f09fe49d2796c389a4b33ee7)
        ;

        
    
    
            var poly_line_05c6c37a8f93fcc7ce076bda47592b20 = L.polyline(
                [[41.9036388, -87.6567679], [41.9038105, -87.6567724]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_3e19fcb7414c6192ef0c316b295d5a46 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_3c6806fa4e619bfee5364c48309208a3 = $(`<div id=&quot;html_3c6806fa4e619bfee5364c48309208a3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12193701783 → 12193701784 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317492126&quot; target=&quot;_blank&quot;>1317492126</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.095827724340474</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_3e19fcb7414c6192ef0c316b295d5a46.setContent(html_3c6806fa4e619bfee5364c48309208a3);
            
        

        poly_line_05c6c37a8f93fcc7ce076bda47592b20.bindPopup(popup_3e19fcb7414c6192ef0c316b295d5a46)
        ;

        
    
    
            var poly_line_75607898918c3154e1b66a6bbe15a8f6 = L.polyline(
                [[41.9038105, -87.6567724], [41.9038135, -87.6566364]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_1b020fcd63a2cea71a6bde16c02c96fb = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_024947566c577cf49dc0eece3a532d6a = $(`<div id=&quot;html_024947566c577cf49dc0eece3a532d6a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12193701784 → 12193701719 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317492125&quot; target=&quot;_blank&quot;>1317492125</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>11.260145133464585</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_1b020fcd63a2cea71a6bde16c02c96fb.setContent(html_024947566c577cf49dc0eece3a532d6a);
            
        

        poly_line_75607898918c3154e1b66a6bbe15a8f6.bindPopup(popup_1b020fcd63a2cea71a6bde16c02c96fb)
        ;

        
    
    
            var poly_line_c2cea38a05948e3d4959bf59212af693 = L.polyline(
                [[41.9038105, -87.6567724], [41.9036388, -87.6567679]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_b81aac12facb5d03e0388490938d7350 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_9c59343676a52547cb2f16d6da2b718a = $(`<div id=&quot;html_9c59343676a52547cb2f16d6da2b718a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12193701784 → 12193701783 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317492126&quot; target=&quot;_blank&quot;>1317492126</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>19.095827724340474</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>True</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_b81aac12facb5d03e0388490938d7350.setContent(html_9c59343676a52547cb2f16d6da2b718a);
            
        

        poly_line_c2cea38a05948e3d4959bf59212af693.bindPopup(popup_b81aac12facb5d03e0388490938d7350)
        ;

        
    
    
            var poly_line_781e440aa9c742f0b4434d97f2cad3b4 = L.polyline(
                [[41.9038105, -87.6567724], [41.9038054, -87.6570006], [41.9036381, -87.6569953]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_392dfc3166073f9e9ad6da235c5b209d = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_f0f22b9de50d7e5fd36437e1e71931ce = $(`<div id=&quot;html_f0f22b9de50d7e5fd36437e1e71931ce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12193701784 → 12193701782 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317492125&quot; target=&quot;_blank&quot;>1317492125</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>37.5021895394775</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>parking_aisle</td></tr>             </table>         </div>         </div>`)[0];
                popup_392dfc3166073f9e9ad6da235c5b209d.setContent(html_f0f22b9de50d7e5fd36437e1e71931ce);
            
        

        poly_line_781e440aa9c742f0b4434d97f2cad3b4.bindPopup(popup_392dfc3166073f9e9ad6da235c5b209d)
        ;

        
    
    
            var poly_line_6f5eebcf3450ff777fa55dce3c15400d = L.polyline(
                [[41.90721, -87.6595152], [41.9071829, -87.6595146], [41.9071166, -87.6595121]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_e2591c340cac23f87c4175532e6e1d41 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_0b4b50d3590a921d53916f0740de419b = $(`<div id=&quot;html_0b4b50d3590a921d53916f0740de419b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12195806858 → 12195806859 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/1317723583&quot; target=&quot;_blank&quot;>1317723583</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</th>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Value</th>                 </tr>                 <tr><td style='padding:2px 6px;font-weight:600;'>highway</td><td style='padding:2px 6px;'>service</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>length</td><td style='padding:2px 6px;'>10.388932208047228</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>oneway</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>reversed</td><td style='padding:2px 6px;'>False</td></tr><tr><td style='padding:2px 6px;font-weight:600;'>service</td><td style='padding:2px 6px;'>driveway</td></tr>             </table>         </div>         </div>`)[0];
                popup_e2591c340cac23f87c4175532e6e1d41.setContent(html_0b4b50d3590a921d53916f0740de419b);
            
        

        poly_line_6f5eebcf3450ff777fa55dce3c15400d.bindPopup(popup_e2591c340cac23f87c4175532e6e1d41)
        ;

        
    
    
            var poly_line_bf726d00dc28fc6e3866bb21422d1436 = L.polyline(
                [[41.9071166, -87.6595121], [41.9071281, -87.6587738]],
                {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#e6194b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#e6194b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;noClip&quot;: false, &quot;opacity&quot;: 0.6, &quot;smoothFactor&quot;: 1.0, &quot;stroke&quot;: true, &quot;weight&quot;: 2}
            ).addTo(map_176ecb8162cf7770cbea955babcd9213);
        
    
        var popup_f70f0bd33749926b5dd85e65cda27486 = L.popup({
  &quot;maxWidth&quot;: 400,
});

        
            
                var html_e5be4ef0b3652880bd03c06e143829a1 = $(`<div id=&quot;html_e5be4ef0b3652880bd03c06e143829a1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;>         <div style=&quot;font-family:monospace;font-size:12px;max-width:350px;&quot;>             <div style=&quot;margin-bottom:4px;&quot;>                 <b>Edge</b> 12195806859 → 7505359102 (key 0)<br>                 <b>Component</b> 0<br>                 <b>OSM way</b>: <a href=&quot;https://www.openstreetmap.org/way/24085264&quot; target=&quot;_blank&quot;>24085264</a>             </div>             <table style=&quot;border-collapse:collapse;&quot;>                 <tr style=&quot;border-bottom:1px solid #ccc;&quot;>                     <th style=&quot;padding:2px 6px;text-align:left;&quot;>Tag</